Skip to content

Instantly share code, notes, and snippets.

@grahamc
Created November 26, 2017 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grahamc/afaaf6b1cab60e21e7143d7ecce7434f to your computer and use it in GitHub Desktop.
Save grahamc/afaaf6b1cab60e21e7143d7ecce7434f to your computer and use it in GitHub Desktop.
nix = {
useSandbox = true;
distributedBuilds = true;
buildMachines = [
{
hostName = "myaarchbox";
maxJobs = 96;
sshKey = "/root/hydra";
sshUser = "root";
system = "aarch64-linux";
supportedFeatures = [ "big-parallel" ];
}
{
hostName = "10.5.3.109";
maxJobs = 4;
sshKey = "/root/.ssh/id_rsa";
sshUser = "graham";
system = "x86_64-darwin";
supportedFeatures = [ "big-parallel" ];
}
];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment