1
Fork 0
satellite/hosts/nixos/lapetus/filesystems.nix
2023-07-18 17:30:04 +03:00

14 lines
274 B
Nix

{
fileSystems =
let zfs = { neededForBoot = true; options = [ "zfsutil" ]; };
in
{
"/" = zfs;
"/nix" = zfs;
"/persist/data" = zfs;
"/persist/state" = zfs;
"/persist/local/cache" = zfs;
"/boot".neededForBoot = true;
};
}