HexName-NixOS/pkgs/zfs.nix

19 lines
238 B
Nix

{ ... }:
{
services.zfs = {
autoSnapshot = {
enable = true;
flags = "-k -p -u";
monthly = 6;
weekly = 2;
daily = 7;
hourly = 24;
frequent = 8;
};
autoScrub.enable = true;
};
}