You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many support questions when people add a new binary cache
and they suddenly lose nixos substitutions.
Most of the users want to keep that, so we're doing a breaking change.
Previously to disable all binary caches one had to do:
nix.binaryCache = [];
Now the same is possible via:
nix.binaryCache = lib.mkForce;
3 commit comments
vaibhavsagar commentedon Jul 15, 2019
Is that
lib.mkForce []
to override?domenkozar commentedon Jul 15, 2019
Yes :)
vaibhavsagar commentedon Jul 15, 2019
Thanks, I was confused by the commit message 😄.