change backup schedules

This commit is contained in:
chaos 2024-07-18 18:30:50 +01:00
parent 9d05a93541
commit 28b1c4a363
No known key found for this signature in database

View file

@ -1,18 +1,18 @@
rec { rec {
restic = let restic = let
OnStartupSec = "5m"; OnStartupSec = "1h";
in { in {
low = { low = {
inherit OnStartupSec; inherit OnStartupSec;
OnUnitActiveSec = "12h"; OnUnitActiveSec = "48h";
}; };
medium = { medium = {
inherit OnStartupSec; inherit OnStartupSec;
OnUnitActiveSec = "8h"; OnUnitActiveSec = "24h";
}; };
high = { high = {
inherit OnStartupSec; inherit OnStartupSec;
OnUnitActiveSec = "2h"; OnUnitActiveSec = "12h";
}; };
}; };