+15
hosts/heather/default.nix
+15
hosts/heather/default.nix
+35
hosts/heather/hardware.nix
+35
hosts/heather/hardware.nix
···
1
+
{
2
+
fileSystems = {
3
+
"/boot" = {
4
+
device = "/dev/disk/by-uuid/7AE2-203E";
5
+
fsType = "vfat";
6
+
};
7
+
8
+
"/" = {
9
+
device = "/dev/sda1";
10
+
fsType = "ext4";
11
+
};
12
+
};
13
+
14
+
boot = {
15
+
loader.grub = {
16
+
efiSupport = true;
17
+
efiInstallAsRemovable = true;
18
+
device = "nodev";
19
+
};
20
+
21
+
initrd = {
22
+
availableKernelModules = [
23
+
"ata_piix"
24
+
"uhci_hcd"
25
+
"xen_blkfront"
26
+
];
27
+
28
+
kernelModules = [ "nvme" ];
29
+
};
30
+
31
+
tmp.cleanOnBoot = true;
32
+
};
33
+
34
+
zramSwap.enable = true;
35
+
}