fix: don't use distributed Builds

This commit is contained in:
Noa Aarts 2024-10-21 16:55:13 +02:00
parent 085783aa76
commit b4171f825b
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -99,16 +99,8 @@
nix = { nix = {
settings.trusted-substituters = [ "ssh://nix-ssh@192.168.42.5" ]; settings.trusted-substituters = [ "ssh://nix-ssh@192.168.42.5" ];
buildMachines = [{ buildMachines = [ ];
hostName = "localhost"; distributedBuilds = false;
system = "x86_64-linux";
protocol = null;
maxJobs = 5;
speedFactor = 1;
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}];
distributedBuilds = true;
settings.builders-use-substitutes = true; settings.builders-use-substitutes = true;
}; };