40 lines
721 B
Nix
40 lines
721 B
Nix
{ ... }: {
|
|
home.nixos.enable = true;
|
|
user = {
|
|
dasha = true;
|
|
root = true;
|
|
};
|
|
|
|
module = {
|
|
amd.gpu.enable = true;
|
|
builder.client.enable = true;
|
|
display.primary = "DP-1";
|
|
package.extra = true;
|
|
print.enable = true;
|
|
purpose = {
|
|
creative = true;
|
|
desktop = true;
|
|
disown = true;
|
|
gaming = true;
|
|
work = true;
|
|
};
|
|
syncthing = {
|
|
enable = true;
|
|
user = "dasha";
|
|
};
|
|
sway.extraConfig = [
|
|
"output DP-1 pos 0 0"
|
|
"output DP-2 pos 1920 0"
|
|
"workspace 1 output DP-1"
|
|
];
|
|
hwmon = {
|
|
file = "temp1_input";
|
|
path = "/sys/devices/platform/coretemp.0/hwmon";
|
|
};
|
|
intel.cpu = {
|
|
enable = true;
|
|
powersave = true;
|
|
};
|
|
};
|
|
}
|