Update hardware-configuration.nix for flynode.

This commit is contained in:
Nolan Darilek 2025-05-19 16:27:18 -05:00
parent d8b387de3b
commit 771fec583f

View file

@ -18,8 +18,8 @@
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/nix" = fileSystems."/home" =
{ device = "zpool/nix"; { device = "zpool/home";
fsType = "zfs"; fsType = "zfs";
}; };
@ -28,13 +28,13 @@
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/home" = fileSystems."/nix" =
{ device = "zpool/home"; { device = "zpool/nix";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/0642-E087"; { device = "/dev/disk/by-uuid/001D-B2B7";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };