Skip to content

Commit a79863f

Browse files
authored
nixos/services.tarsnap: fix escapeSystemdPath (#342911)
2 parents dcf1beb + f6e2fb5 commit a79863f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/modules/services/backup/tarsnap.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ in
8787

8888
cachedir = lib.mkOption {
8989
type = lib.types.nullOr lib.types.path;
90-
default = "/var/cache/tarsnap/${utils.lib.escapeSystemdPath config.keyfile}";
90+
default = "/var/cache/tarsnap/${utils.escapeSystemdPath config.keyfile}";
9191
defaultText = lib.literalExpression ''
9292
"/var/cache/tarsnap/''${utils.escapeSystemdPath config.${options.keyfile}}"
9393
'';

0 commit comments

Comments
 (0)