My Nix Configuration
2
fork

Configure Feed

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

[prefect] update bootloader stuff

dish fd2f337f 5b87bbc1

+3 -3
+1 -1
hosts/prefect/bootloader.nix
··· 12 12 boot = { 13 13 zfs.devNodes = "/dev/"; 14 14 loader = { 15 - grub.device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_21170924"; 15 + grub.device = "/dev/disk/by-path/pci-0000:00:10.0"; 16 16 grub.enable = true; 17 17 }; 18 18 initrd = {
+2 -2
hosts/prefect/default.nix
··· 25 25 ]; 26 26 fileSystems = { 27 27 "/" = { 28 - fsType = "ext4"; 29 - device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_21170924-part1"; 28 + fsType = "btrfs"; 29 + device = "/dev/disk/by-path/pci-0000:00:10.0-part3"; 30 30 }; 31 31 }; 32 32