2020-03-06 13:52:02 +00:00
|
|
|
# Use the Nix community aarch64 server as a build server
|
|
|
|
# https://github.com/nix-community/aarch64-build-box
|
|
|
|
|
|
|
|
{
|
|
|
|
nix = {
|
|
|
|
distributedBuilds = true;
|
2021-11-16 04:57:23 +00:00
|
|
|
buildMachines = [{
|
|
|
|
hostName = "aarch64.nixos.community";
|
|
|
|
maxJobs = 64;
|
|
|
|
sshKey = "/root/.ssh/id_nixops_ed25519";
|
|
|
|
sshUser = "craige";
|
|
|
|
system = "aarch64-linux";
|
|
|
|
supportedFeatures = [ "big-parallel" ];
|
|
|
|
}];
|
2020-03-06 13:52:02 +00:00
|
|
|
};
|
|
|
|
}
|