1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{ fileSystems = { "/" = { device = "nixos/root"; fsType = "zfs"; }; "/home" = { device = "nixos/home"; fsType = "zfs"; }; "/boot" = { device = "/dev/disk/by-uuid/F2A6-FD25"; options = [ "fmask=0022" "dmask=0022" ]; fsType = "vfat"; }; }; }