fix: build on self instead

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

View file

@ -100,11 +100,11 @@
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 = "192.168.42.5"; hostName = "localhost";
system = "x86_64-linux"; system = "x86_64-linux";
protocol = "ssh"; protocol = null;
maxJobs = 5; maxJobs = 5;
speedFactor = 3; speedFactor = 1;
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ]; mandatoryFeatures = [ ];
}]; }];