diff options
author | sils <sils@sils.li> | 2024-01-07 16:22:58 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2024-01-07 16:22:58 +0100 |
commit | c8e368b5e3f93f9be69e47e3c661e5086756770d (patch) | |
tree | a9ca4fa57a31b7d73b1869d5bc139ab469d7a598 /sys | |
parent | fix(sys/services/restic): backup btrfs snapshot (diff) | |
download | nix-config-c8e368b5e3f93f9be69e47e3c661e5086756770d.tar.gz nix-config-c8e368b5e3f93f9be69e47e3c661e5086756770d.zip |
fix(treewide): rename borg* secrets to restic*
Diffstat (limited to 'sys')
-rw-r--r-- | sys/services/restic/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/services/restic/default.nix b/sys/services/restic/default.nix index 77ff40e..c4ab7c3 100644 --- a/sys/services/restic/default.nix +++ b/sys/services/restic/default.nix @@ -21,9 +21,9 @@ "--exclude-if-present .nobackup" # Don't backup directory if it contains a file called ".nobackup" "--verbose" # Spam log ]; - passwordFile = config.age.secrets.borgpass.path; + passwordFile = config.age.secrets.resticpass.path; extraOptions = [ - "rclone.program='ssh -p 23 ${boxUser}@${boxUser}.your-storagebox.de -i ${config.age.secrets.borgssh.path}'" + "rclone.program='ssh -p 23 ${boxUser}@${boxUser}.your-storagebox.de -i ${config.age.secrets.resticssh.path}'" ]; repository = "rclone: "; # There is only one repository served }; |