From d10df735be7bb60aee3eeb6d339d13c2a864a85c Mon Sep 17 00:00:00 2001 From: Malte Tammena Date: Wed, 16 Oct 2024 14:01:37 +0200 Subject: [PATCH] fix(user/module/restic-backup): use unsafe auth --- users/modules/restic-backup.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/modules/restic-backup.nix b/users/modules/restic-backup.nix index c2523f2..098d738 100644 --- a/users/modules/restic-backup.nix +++ b/users/modules/restic-backup.nix @@ -10,7 +10,7 @@ config, ... }: let - resticCmd = "${pkgs.restic}/bin/restic"; + resticCmd = "${lib.getExe pkgs.restic} -o s3.unsafe-anonymous-auth=true"; inherit (config.home) username; repository = "s3:https://s3.tammena.me/restic/${username}";