14 lines
274 B
Nix
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;
|
|
};
|
|
}
|