2024-11-15 01:42:21 +03:00
|
|
|
{ ... }: {
|
2024-11-07 12:12:53 +03:00
|
|
|
home.nixos.enable = true;
|
|
|
|
user = {
|
2024-11-16 06:38:48 +03:00
|
|
|
root = true;
|
|
|
|
voronind = true;
|
2024-11-07 12:12:53 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
module = {
|
|
|
|
builder.client.enable = true;
|
2024-11-16 06:38:48 +03:00
|
|
|
package.extra = true;
|
|
|
|
print.enable = true;
|
|
|
|
purpose = {
|
2024-12-14 03:14:59 +03:00
|
|
|
creative = true;
|
|
|
|
gaming = true;
|
|
|
|
laptop = true;
|
|
|
|
work = true;
|
2024-11-07 12:12:53 +03:00
|
|
|
};
|
2024-11-18 02:24:48 +03:00
|
|
|
display = {
|
|
|
|
primary = "DSI-1";
|
|
|
|
rotate = {
|
|
|
|
tty = 90;
|
|
|
|
DSI-1 = 90;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
sway.extraConfig = [
|
|
|
|
"input type:touch map_to_output DSI-1"
|
|
|
|
];
|
2024-11-07 12:12:53 +03:00
|
|
|
hwmon = {
|
|
|
|
file = "temp1_input";
|
|
|
|
path = "/sys/devices/platform/coretemp.0/hwmon";
|
|
|
|
};
|
|
|
|
intel.cpu = {
|
|
|
|
enable = true;
|
|
|
|
powersave = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|