loptland: add remote runner

This commit is contained in:
Christoph Hollizeck 2025-10-31 00:54:05 +01:00
parent 81376afa2e
commit 577eebbdf5
Signed by: Daholli
GPG key ID: 249300664F2AF2C7

View file

@ -68,5 +68,41 @@ in
443
];
nix = {
distributedBuilds = true;
extraOptions = ''
builders-use-substitutes = true
'';
buildMachines = [
{
hostName = "localhost";
protocol = null;
system = "x86_64-linux";
supportedFeatures = [
"kvm"
"nixos-test"
"big-parallel"
"benchmark"
];
}
{
hostName = "100.86.23.74";
sshUser = "remotebuild";
sshKey = "/root/.ssh/remotebuild";
systems = [ "aarch64-linux" ];
protocol = "ssh";
supportedFeatures = [
"nixos-test"
"big-parallel"
"kvm"
];
}
];
};
};
}