chore(restic): reduce to 4 daily backups

This commit is contained in:
Felix Schröter 2022-08-15 21:16:29 +02:00
parent 76d4457e92
commit e85cb4e0f0
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 4 additions and 4 deletions

View file

@ -89,8 +89,8 @@ in {
"/home/*/.var/app/**/Code Cache" "/home/*/.var/app/**/Code Cache"
"/home/*/.var/app/**/GPUCache" "/home/*/.var/app/**/GPUCache"
]; ];
timerConfig.OnCalendar = "0/4:00:00"; timerConfig.OnCalendar = "0/6:00:00";
extraPruneOpts = [ "--keep-last 6" ]; extraPruneOpts = [ "--keep-last 4" ];
}; };
# extra handling for dev folder to respect .gitignore files: # extra handling for dev folder to respect .gitignore files:

View file

@ -39,7 +39,7 @@ in {
"log" "log"
".Trash" ".Trash"
]; ];
timerConfig.OnCalendar = "0/4:00:00"; timerConfig.OnCalendar = "0/6:00:00";
extraPruneOpts = [ "--keep-last 6" ]; extraPruneOpts = [ "--keep-last 4" ];
}; };
} }