From 6a8904011a8d52521d8ab6cc6995da677e8e4dd4 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 28 Feb 2021 11:55:58 +0100 Subject: [PATCH] restic: Fix typo in excludes filename --- modules/restic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/restic.nix b/modules/restic.nix index ee1017c..a9856c2 100644 --- a/modules/restic.nix +++ b/modules/restic.nix @@ -27,7 +27,7 @@ let # Docker (state should be kept somewhere else) "/var/lib/docker/" ] ++ cfg.extraExcludes; - excludesFile = pkgs.writeText "exludes.txt" (lib.concatStringsSep "\n" excludes); + excludesFile = pkgs.writeText "excludes.txt" (lib.concatStringsSep "\n" excludes); # script to use restic as user without dealing with authentication authScript = pkgs.writeShellScriptBin "restic-auth" ''