Skip to content

Instantly share code, notes, and snippets.

@superherointj
Created April 7, 2021 13:47
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 superherointj/f5beae7407106e7ecf48c0f780b423c9 to your computer and use it in GitHub Desktop.
Save superherointj/f5beae7407106e7ecf48c0f780b423c9 to your computer and use it in GitHub Desktop.
configuration.nix
{
nix = {
maxJobs = 5;
distributedBuilds = true;
buildMachines = [
{
hostName = "k2";
maxJobs = 1;
system = "aarch64-linux";
}
{
hostName = "k3";
maxJobs = 1;
system = "aarch64-linux";
}
{
hostName = "k4";
maxJobs = 1;
system = "aarch64-linux";
}
{
hostName = "k5";
maxJobs = 1;
system = "aarch64-linux";
}
];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment