aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/mercury/system/fs.nix
blob: 928d5ac6309cd07c22460983931896fafb5679aa (plain) (blame)
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";
    };
  };
}