diff options
Diffstat (limited to 'custom/borgbackup.nix')
-rw-r--r-- | custom/borgbackup.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/custom/borgbackup.nix b/custom/borgbackup.nix index 0c497b6a..91de89a5 100644 --- a/custom/borgbackup.nix +++ b/custom/borgbackup.nix | |||
@@ -96,7 +96,7 @@ in { | |||
96 | script = let | 96 | script = let |
97 | borgCmd = '' | 97 | borgCmd = '' |
98 | borg create \ | 98 | borg create \ |
99 | --lock-wait ${tCfg.lockWait} \ | 99 | --lock-wait ${toString tCfg.lockWait} \ |
100 | --stats \ | 100 | --stats \ |
101 | --list \ | 101 | --list \ |
102 | --filter 'AME' \ | 102 | --filter 'AME' \ |
@@ -130,7 +130,7 @@ in { | |||
130 | 130 | ||
131 | script = concatStringsSep "\n" (mapAttrsToList (path: args: '' | 131 | script = concatStringsSep "\n" (mapAttrsToList (path: args: '' |
132 | borg prune \ | 132 | borg prune \ |
133 | --lock-wait ${tCfg.lockWait} \ | 133 | --lock-wait ${toString tCfg.lockWait} \ |
134 | --list \ | 134 | --list \ |
135 | --stats \ | 135 | --stats \ |
136 | --prefix "${cfg.prefix}${path}" \ | 136 | --prefix "${cfg.prefix}${path}" \ |