Skip to content

Commit

Permalink
Merge pull request #159662 from polykernel/nix-fix-substituters-mergi…
Browse files Browse the repository at this point in the history
…ng-order

nixos/nix-daemon: Fix merging order for substituters option
  • Loading branch information
domenkozar committed Feb 21, 2022
2 parents f9e65e4 + 34636a8 commit 05afa7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/misc/nix-daemon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ in
nix.settings = mkMerge [
{
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
substituters = [ "https://cache.nixos.org/" ];
substituters = mkAfter [ "https://cache.nixos.org/" ];

system-features = mkDefault (
[ "nixos-test" "benchmark" "big-parallel" "kvm" ] ++
Expand Down

0 comments on commit 05afa7d

Please sign in to comment.