29 lines
449 B
Nix
29 lines
449 B
Nix
rec {
|
|
restic = let
|
|
OnStartupSec = "1h";
|
|
in {
|
|
low = {
|
|
inherit OnStartupSec;
|
|
OnUnitActiveSec = "48h";
|
|
};
|
|
medium = {
|
|
inherit OnStartupSec;
|
|
OnUnitActiveSec = "24h";
|
|
};
|
|
high = {
|
|
inherit OnStartupSec;
|
|
OnUnitActiveSec = "12h";
|
|
};
|
|
};
|
|
|
|
music = {
|
|
OnStartupSec = "2m";
|
|
OnUnitActiveSec = "2h";
|
|
};
|
|
|
|
remoteBackups = {
|
|
OnStartupSec = "1h";
|
|
OnUnitActiveSec = "48h";
|
|
};
|
|
}
|