[tohru] refresh hardware-configuration.nix

This commit is contained in:
Katherina Walshe-Grey 2024-06-19 18:37:16 +01:00
parent 6bf38b7814
commit 8ed478edb7

View file

@ -28,6 +28,16 @@
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/config" =
{ device = "rpool/config";
fsType = "zfs";
};
fileSystems."/data" =
{ device = "rpool/data";
fsType = "zfs";
};
fileSystems."/home" = fileSystems."/home" =
{ device = "rpool/home"; { device = "rpool/home";
fsType = "zfs"; fsType = "zfs";
@ -39,18 +49,13 @@
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };
fileSystems."/data" =
{ device = "rpool/data";
fsType = "zfs";
};
fileSystems."/data/steam" = fileSystems."/data/steam" =
{ device = "rpool/data/steam"; { device = "rpool/data/steam";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/config" = fileSystems."/data/syncthing" =
{ device = "rpool/config"; { device = "rpool/data/syncthing";
fsType = "zfs"; fsType = "zfs";
}; };