Server NixOS configs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: oops, update lock

+2 -3
+2 -3
hosts/tethys/hardware.nix
··· 1 1 { pkgs, modulesPath, ... }: 2 - let rootDisk = "/dev/disk/by-uuid/5e6f1593-c3dd-45e2-bf7a-27b3cd9ef023"; in 3 2 { 4 3 imports = [(modulesPath + "/profiles/qemu-guest.nix")]; 5 4 ··· 22 21 23 22 loader.grub = { 24 23 enable = true; 25 - device = rootDisk; 24 + device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_117185216"; 26 25 }; 27 26 }; 28 27 29 28 fileSystems."/" = { 30 - device = rootDisk; 29 + device = "/dev/disk/by-uuid/5e6f1593-c3dd-45e2-bf7a-27b3cd9ef023"; 31 30 fsType = "ext4"; 32 31 }; 33 32 }