nix/host/x86_64-linux/dasha/default.nix

36 lines
661 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
home.nixos.enable = true;
user = {
2024-11-16 06:38:48 +03:00
dasha = true;
root = true;
2024-11-04 04:37:29 +03:00
};
2024-08-20 20:24:43 +03:00
2024-11-04 04:37:29 +03:00
module = {
2024-11-18 02:24:48 +03:00
amd.gpu.enable = true;
2024-11-04 04:37:29 +03:00
builder.client.enable = true;
2024-11-18 02:24:48 +03:00
display.primary = "DP-1";
package.extra = true;
print.enable = true;
2024-11-16 06:38:48 +03:00
purpose = {
creativity = true;
desktop = true;
disown = true;
gaming = true;
work = true;
};
2024-12-02 01:17:53 +03:00
sway.extraConfig = [
"output DP-1 pos 0 0"
"output DP-2 pos 1920 0"
"workspace 1 output DP-1"
];
2024-11-04 04:37:29 +03:00
hwmon = {
file = "temp1_input";
path = "/sys/devices/platform/coretemp.0/hwmon";
};
intel.cpu = {
enable = true;
powersave = true;
};
};
}