restic: Fix typo in excludes filename

pull/48/head
Simon Bruder 2021-02-28 11:55:58 +01:00
parent 3934c84644
commit 6a8904011a
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 1 additions and 1 deletions

View File

@ -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" ''