mochi/nixos/hosts/shadowfax/config/sanoid.nix

18 lines
278 B
Nix
Raw Normal View History

2024-09-03 21:46:29 -05:00
{ ... }:
{
outputs = {
# ZFS automated snapshots
templates = {
"production" = {
recursive = true;
autoprune = true;
autosnap = true;
hourly = 24;
daily = 7;
monthly = 12;
};
};
datasets = { };
};
}