nixfiles/data/backupSchedules.nix

29 lines
447 B
Nix
Raw Normal View History

2024-03-09 22:18:26 +00:00
rec {
restic = let
OnStartupSec = "5m";
in {
low = {
inherit OnStartupSec;
OnUnitActiveSec = "12h";
};
medium = {
inherit OnStartupSec;
OnUnitActiveSec = "8h";
};
high = {
inherit OnStartupSec;
OnUnitActiveSec = "2h";
};
};
music = {
OnStartupSec = "2m";
OnUnitActiveSec = "2h";
};
remoteBackups = {
2024-07-17 20:18:39 +01:00
OnStartupSec = "1h";
OnUnitActiveSec = "48h";
2024-03-09 22:18:26 +00:00
};
}