forked from lix-project/lix
Always default to cache.nixos.org even when different nix store dir
Since 0744f7f
, it is now useful to have cache.nixos.org in substituers
even if /nix/store is not the Nix Store Dir. This can always be
overridden via configuration, though.
This commit is contained in:
parent
1d1a85eb0a
commit
aa07502009
|
@ -583,7 +583,7 @@ public:
|
||||||
|
|
||||||
Setting<Strings> substituters{
|
Setting<Strings> substituters{
|
||||||
this,
|
this,
|
||||||
nixStore == "/nix/store" ? Strings{"https://cache.nixos.org/"} : Strings(),
|
Strings{"https://cache.nixos.org/"},
|
||||||
"substituters",
|
"substituters",
|
||||||
R"(
|
R"(
|
||||||
A list of URLs of substituters, separated by whitespace. The default
|
A list of URLs of substituters, separated by whitespace. The default
|
||||||
|
|
Loading…
Reference in a new issue