nixfiles/data/backupSchedules.nix
2024-07-21 20:34:36 +01:00

24 lines
378 B
Nix

rec {
restic = let
OnStartupSec = "1h";
in {
low = {
inherit OnStartupSec;
OnUnitActiveSec = "48h";
};
medium = {
inherit OnStartupSec;
OnUnitActiveSec = "24h";
};
high = {
inherit OnStartupSec;
OnUnitActiveSec = "12h";
};
};
remoteBackups = {
OnStartupSec = "1h";
OnUnitActiveSec = "48h";
};
}