about summary refs log tree commit diff
path: root/modules/services/backup
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-07-08 17:55:07 -0700
committerFranck Cuny <franck@fcuny.net>2022-07-08 17:55:43 -0700
commit0ee27052e039d5b969ad5b806eeddfd63676a6de (patch)
treea00c2b1ab4fa99c1f265c7553df515c9d6ef039c /modules/services/backup
parentfix(tahoe/backups): don't backup some directories (diff)
downloadworld-0ee27052e039d5b969ad5b806eeddfd63676a6de.tar.gz
fix(modules/backup): reduce verbosity for restic
It's spamming journald, and I don't need that level of details.

Change-Id: If6bd8338cf3ed5d7981500e0f3001a3dc4c14870
Reviewed-on: https://cl.fcuny.net/c/world/+/621
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'modules/services/backup')
-rw-r--r--modules/services/backup/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/backup/default.nix b/modules/services/backup/default.nix
index 04b4e1f..22cd277 100644
--- a/modules/services/backup/default.nix
+++ b/modules/services/backup/default.nix
@@ -88,7 +88,7 @@ in
     services.restic.backups.host = {
       # Take care of included and excluded files
       paths = cfg.paths;
-      extraBackupArgs = [ "--verbose=2" ]
+      extraBackupArgs = [ "--verbose=1" ]
         ++ lib.optional (builtins.length cfg.exclude != 0) excludeArg;
       # Take care of creating the repository if it doesn't exist
       initialize = true;