nixfiles/data/backupSchedules.nix
2024-11-08 20:30:19 +00:00

24 lines
378 B
Nix

rec {
restic = let
OnStartupSec = "1h";
in {
low = {
inherit OnStartupSec;
OnUnitActiveSec = "108h";
};
medium = {
inherit OnStartupSec;
OnUnitActiveSec = "96h";
};
high = {
inherit OnStartupSec;
OnUnitActiveSec = "48h";
};
};
remoteBackups = {
OnStartupSec = "1h";
OnUnitActiveSec = "8h";
};
}