infrastructure/config/services/zfs/default.nix
2021-08-06 23:11:46 +01:00

14 lines
209 B
Nix

{ config, lib, pkgs, ... }:
{
services.zfs = {
autoScrub.enable = true;
autoSnapshot = {
enable = true;
frequent = 1;
daily = 7;
weekly = 1;
monthly = 1;
};
};
}