Skip to content

Commit

Permalink
nix-daemon: fix autoOptimiseStore option
Browse files Browse the repository at this point in the history
(cherry picked from commit c808801)
globin committed Mar 21, 2017

Verified

This commit was signed with the committer’s verified signature.
jabranham Alex Branham
1 parent a334a17 commit e87e108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/misc/nix-daemon.nix
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ let
binary-caches = ${toString cfg.binaryCaches}
trusted-binary-caches = ${toString cfg.trustedBinaryCaches}
binary-cache-public-keys = ${toString cfg.binaryCachePublicKeys}
auto-optimise-store = ${toString cfg.autoOptimiseStore}
auto-optimise-store = ${if cfg.autoOptimiseStore then "true" else "false"}
${optionalString cfg.requireSignedBinaryCaches ''
signed-binary-caches = *
''}

0 comments on commit e87e108

Please sign in to comment.