1
Fork 0
satellite/hosts/nixos/lapetus/services/zfs.nix

41 lines
755 B
Nix
Raw Permalink Normal View History

2024-08-26 17:38:47 +02:00
{ config, ... }:
{
# {{{ Zfs config
2024-02-12 14:57:13 +01:00
services.zfs = {
trim.enable = true;
autoScrub.enable = true;
};
# }}}
2024-08-26 17:38:47 +02:00
# {{{ Sanoid config
# Sanoid allows me to configure snapshot frequency on a per-dataset basis.
services.sanoid = {
enable = true;
2024-02-12 14:57:13 +01:00
# {{{ Data
2024-02-12 15:39:55 +01:00
datasets."zroot/root/persist/data" = {
autosnap = true;
autoprune = true;
recursive = true;
yearly = 0;
monthly = 12;
weekly = 4;
daily = 7;
hourly = 24;
2024-02-12 14:57:13 +01:00
};
# }}}
# {{{ State
2024-02-12 15:39:55 +01:00
datasets."zroot/root/persist/state" = {
autosnap = true;
autoprune = true;
recursive = true;
yearly = 0;
monthly = 1;
weekly = 1;
daily = 3;
hourly = 6;
};
# }}}
2024-02-12 14:57:13 +01:00
};
# }}}
}