remove vpsfree from the pool of distributed builders, focusing on local builds
This commit is contained in:
parent
16b68aae4e
commit
9bc0671388
1 changed files with 10 additions and 22 deletions
|
@ -6,28 +6,16 @@
|
|||
StrictHostKeyChecking=accept-new
|
||||
'';
|
||||
|
||||
nix.buildMachines = [
|
||||
{
|
||||
hostName = "bolty";
|
||||
sshUser = "nix-builder";
|
||||
sshKey = "/home/cyryl/.ssh/id_ed25519";
|
||||
systems = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
|
||||
maxJobs = 2;
|
||||
speedFactor = 1;
|
||||
supportedFeatures = [ "kvm" "big-parallel" ];
|
||||
mandatoryFeatures = [ ];
|
||||
}
|
||||
{
|
||||
hostName = "vpsfree1";
|
||||
sshUser = "nix-builder";
|
||||
sshKey = "/home/cyryl/.ssh/id_ed25519";
|
||||
systems = [ "x86_64-linux" ];
|
||||
maxJobs = 2;
|
||||
speedFactor = 2;
|
||||
supportedFeatures = [ "kvm" ];
|
||||
mandatoryFeatures = [ ];
|
||||
}
|
||||
];
|
||||
nix.buildMachines = [{
|
||||
hostName = "bolty";
|
||||
sshUser = "nix-builder";
|
||||
sshKey = "/home/cyryl/.ssh/id_ed25519";
|
||||
systems = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
|
||||
maxJobs = 2;
|
||||
speedFactor = 1;
|
||||
supportedFeatures = [ "kvm" "big-parallel" ];
|
||||
mandatoryFeatures = [ ];
|
||||
}];
|
||||
|
||||
nix.extraOptions = ''
|
||||
builders-use-substitutes = true
|
||||
|
|
Loading…
Reference in a new issue