Skip to content

Commit

Permalink
nixos/arhiver-appliance: fix literal default value
Browse files Browse the repository at this point in the history
The quotes were missing, so the printed value was not valid Nix code.

This fixes a warning when building documentation
  • Loading branch information
minijackson committed Jul 30, 2024
1 parent 4047912 commit cafd633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/archiver-appliance.nix
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ in {
'';
type = lib.types.path;
default = "${cfg.package}/share/archappl/policies.py";
defaultText = lib.literalExpression "\${cfg.package}/share/archappl/policies.py";
defaultText = lib.literalExpression ''"''${cfg.package}/share/archappl/policies.py"'';
};

ARCHAPPL_SHORT_TERM_FOLDER = lib.mkOption {
Expand Down

0 comments on commit cafd633

Please sign in to comment.