init
This commit is contained in:
commit
57fa994768
9 changed files with 311 additions and 0 deletions
19
builder.nix
Normal file
19
builder.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
nix = {
|
||||
settings = {
|
||||
builders-use-substitutes = true;
|
||||
};
|
||||
|
||||
distributedBuilds = true;
|
||||
buildMachines = [ {
|
||||
hostName = "192.168.2.1";
|
||||
systems = [ "x86_64-linux" ];
|
||||
protocol = "ssh-ng";
|
||||
supportedFeatures = [ "big-parallel" "kvm" "nixos-test" "benchmark" ];
|
||||
speedFactor = 100;
|
||||
maxJobs = 16;
|
||||
sshUser = "nix-remote-build";
|
||||
sshKey = "/root/.ssh/id_build_server";
|
||||
} ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue