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