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)
  • Loading branch information
globin committed Mar 21, 2017
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
Expand Up @@ -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 = *
''}
Expand Down

0 comments on commit e87e108

Please sign in to comment.