1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-12 10:45:08 +02:00

Fix VM tests

This commit is contained in:
Eelco Dolstra 2019-11-05 11:12:25 +01:00
parent 6b708711f5
commit e1725ba946
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
3 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@ in
builder2 = builder;
client =
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{ nix.maxJobs = 0; # force remote building
nix.distributedBuilds = true;
nix.buildMachines =
@ -60,7 +60,7 @@ in
virtualisation.writableStore = true;
virtualisation.pathsInNixDB = [ config.system.build.extraUtils ];
nix.package = nix;
nix.binaryCaches = [ ];
nix.binaryCaches = lib.mkForce [ ];
programs.ssh.extraConfig = "ConnectTimeout 30";
};
};