1
0
forked from clan/clan-core

borgbackup: use persistent timers

This commit is contained in:
Jörg Thalheim 2024-02-22 13:47:09 +01:00
parent 1cb33a5c6c
commit 17d7eec0ae

View File

@ -34,14 +34,13 @@ in
services.borgbackup.jobs = lib.mapAttrs
(_: dest: {
paths = lib.flatten (map (state: state.folders) (lib.attrValues config.clanCore.state));
exclude = [
"*.pyc"
];
exclude = [ "*.pyc" ];
repo = dest.repo;
environment.BORG_RSH = dest.rsh;
encryption.mode = "none";
compression = "auto,zstd";
startAt = "*-*-* 01:00:00";
persistentTimer = true;
preHook = ''
set -x
'';