blob: a2300f191478c14daf4ba95bfd6364eae563f33d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
_: {
imports = [
./boot.nix
./hardware-configuration.nix
../../modules/nixos/features/tailscale.nix
../../modules/nixos/features/virtualisation.nix
];
getchoo = {
desktop.gnome.enable = true;
features = {
tailscale.enable = true;
virtualisation.enable = true;
};
hardware = {
enable = true;
nvidia.enable = true;
};
};
home-manager.users.seth = {
desktop = {
enable = true;
gnome.enable = true;
};
};
environment.etc."environment".text = ''
LIBVA_DRIVER_NAME=vdpau
'';
networking.hostName = "glados";
powerManagement.cpuFreqGovernor = "ondemand";
security.tpm2 = {
enable = true;
abrmd.enable = true;
};
zramSwap = {
enable = true;
algorithm = "zstd";
swapDevices = 1;
memoryPercent = 50;
};
}
|