this repo has no description

hosts/heather: init

Diogo 641c8ba3 a1b46266

Changed files
+50
hosts
+15
hosts/heather/default.nix
··· 1 + { 2 + imports = [ 3 + ./hardware.nix 4 + ]; 5 + 6 + sys = { 7 + profiles.headless.enable = true; 8 + services = { 9 + postgresql.enable = true; 10 + }; 11 + networking.tailscale.enable = true; 12 + }; 13 + 14 + system.stateVersion = "25.11"; 15 + }
+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 + }