aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/mercury/services/sanoid.nix
blob: 3280dcb75bc82216ec86d8afdf6b0e1e1a26c98e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  services.sanoid = {
    enable = true;
    interval = "daily";

    templates = {
      "default" = {
        autoprune = true;
        autosnap = true;
        monthly = 0;
        hourly = 0;
        yearly = 0;
        daily = 7;
      };
    };

    datasets = {
      "nixos/root".useTemplate = [ "default" ];
      "nixos/home".useTemplate = [ "default" ];
    };
  };
}