change backup frequency

This commit is contained in:
cy 2025-04-21 13:53:21 -04:00
parent a7de77a0fc
commit 48d8bacea8
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
4 changed files with 7 additions and 8 deletions

View file

@ -47,7 +47,7 @@ in
};
startAt = lib.mkOption {
type = lib.types.str;
default = "hourly";
default = "daily";
description = "see systemd.timer(5)";
};
jobName = lib.mkOption {
@ -98,8 +98,9 @@ in
failOnWarnings = false;
prune.keep = {
within = "2d";
daily = 365;
daily = 7;
weekly = 12;
monthly = -1;
};
extraPruneArgs = [ "--stats" ];
};