1
Fork 0
satellite/hosts/nixos/lapetus/filesystems.nix

14 lines
274 B
Nix
Raw Normal View History

2023-07-18 16:30:04 +02:00
{
fileSystems =
let zfs = { neededForBoot = true; options = [ "zfsutil" ]; };
in
{
"/" = zfs;
"/nix" = zfs;
"/persist/data" = zfs;
"/persist/state" = zfs;
"/persist/local/cache" = zfs;
"/boot".neededForBoot = true;
};
}