nixfiles/data/backupSchedules.nix

24 lines
376 B
Nix
Raw Normal View History

2024-03-09 22:18:26 +00:00
rec {
restic = let
2024-07-18 18:30:50 +01:00
OnStartupSec = "1h";
2024-03-09 22:18:26 +00:00
in {
low = {
inherit OnStartupSec;
2024-07-18 18:30:50 +01:00
OnUnitActiveSec = "48h";
2024-03-09 22:18:26 +00:00
};
medium = {
inherit OnStartupSec;
2024-07-22 20:06:07 +01:00
OnUnitActiveSec = "16h";
2024-03-09 22:18:26 +00:00
};
high = {
inherit OnStartupSec;
2024-07-22 20:06:07 +01:00
OnUnitActiveSec = "6h";
2024-03-09 22:18:26 +00:00
};
};
remoteBackups = {
2024-07-17 20:18:39 +01:00
OnStartupSec = "1h";
2024-07-22 20:06:07 +01:00
OnUnitActiveSec = "8h";
2024-03-09 22:18:26 +00:00
};
}