1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 04:21:16 +02:00

move the parallel-compression setting to binary-cache-store, the setting

can be done now from the url e.g s3://nix-cache?parallel-compression=1
instead of nix.conf.
This commit is contained in:
AmineChikhaoui 2018-02-07 21:06:11 +01:00
parent 55ecdfe2a8
commit 47ad88099b
No known key found for this signature in database
GPG key ID: C0C8C84C15BCCD1C
3 changed files with 3 additions and 4 deletions

View file

@ -19,6 +19,8 @@ public:
const Setting<bool> writeNARListing{this, false, "write-nar-listing", "whether to write a JSON file listing the files in each NAR"};
const Setting<Path> secretKeyFile{this, "", "secret-key", "path to secret key used to sign the binary cache"};
const Setting<Path> localNarCache{this, "", "local-nar-cache", "path to a local cache of NARs"};
const Setting<bool> parallelCompression{this, false, "parallel-compression",
"enable multi-threading compression, available for xz only currently"};
private: