diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-01-02 11:49:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 11:49:12 +0100 |
commit | e7f2f70750e96e4f19dc509e96aa5a99894eb20d (patch) | |
tree | 9dbc358fe57815c3a064d63da24075abd373d37f /tests/github-flakes.nix | |
parent | b3285c77223445067a15f4aa81103e2fc28ac582 (diff) | |
parent | bcc09902725350c8f77d4c9051c5c575e82a5a64 (diff) |
Merge pull request #7507 from trofi/use-nix-settings-in-tests
tests: switch to non-deprecated nix.settings.* module parameters
Diffstat (limited to 'tests/github-flakes.nix')
-rw-r--r-- | tests/github-flakes.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/github-flakes.nix b/tests/github-flakes.nix index 43a4f1432..a8b036b17 100644 --- a/tests/github-flakes.nix +++ b/tests/github-flakes.nix @@ -149,7 +149,7 @@ makeTest ( virtualisation.diskSize = 2048; virtualisation.additionalPaths = [ pkgs.hello pkgs.fuse ]; virtualisation.memorySize = 4096; - nix.binaryCaches = lib.mkForce [ ]; + nix.settings.substituters = lib.mkForce [ ]; nix.extraOptions = "experimental-features = nix-command flakes"; networking.hosts.${(builtins.head nodes.github.config.networking.interfaces.eth1.ipv4.addresses).address} = [ "channels.nixos.org" "api.github.com" "github.com" ]; |