infra/modules/nixos/zfs.nix
2023-05-31 10:05:55 +00:00

20 lines
422 B
Nix

{
fileSystems."/" = {
device = "zroot/root/nixos";
fsType = "zfs";
};
fileSystems."/home" = {
device = "zroot/root/home";
fsType = "zfs";
# We don't want servers to go in systemd rescue mode, but rather having
# failed mounts show up in monitoring
options = [ "nofail" ];
};
fileSystems."/boot" = {
device = "/dev/md127";
fsType = "ext4";
options = [ "nofail" ];
};
}