Added nix-community aarch64 build server

This commit is contained in:
Craige McWhirter 2020-03-06 23:52:02 +10:00
parent 569f59bb71
commit 022e191dd0
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

18
roles/nix-community.nix Normal file
View file

@ -0,0 +1,18 @@
# Use the Nix community aarch64 server as a build server
# https://github.com/nix-community/aarch64-build-box
{
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "aarch64.nixos.community";
maxJobs = 64;
sshKey = "/root/.ssh/id_nixops_ed25519";
sshUser = "craige";
system = "aarch64-linux";
supportedFeatures = [ "big-parallel" ];
}
];
};
}