23 lines
394 B
Nix
23 lines
394 B
Nix
{ ... }:
|
|
{
|
|
user.voronind = true;
|
|
|
|
module = {
|
|
builder.client.enable = true;
|
|
display.primary = "eDP-1";
|
|
print.enable = true;
|
|
wallpaper.video = false;
|
|
purpose = {
|
|
desktop = true;
|
|
};
|
|
intel.cpu = {
|
|
enable = true;
|
|
powersave = true;
|
|
};
|
|
hwmon = {
|
|
file = "temp1_input";
|
|
path = "/sys/devices/platform/coretemp.0/hwmon";
|
|
};
|
|
};
|
|
}
|