mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
nix-daemon: fix autoOptimiseStore option
This commit is contained in:
parent
818a37598c
commit
c808801937
1 changed files with 1 additions and 1 deletions
|
@ -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 = *
|
||||
''}
|
||||
|
|
Loading…
Reference in a new issue