Skip to content

Instantly share code, notes, and snippets.

@expipiplus1
Created February 8, 2017 09:35
Show Gist options
  • Save expipiplus1/faf82230f6402f04371a916c4dd4945b to your computer and use it in GitHub Desktop.
Save expipiplus1/faf82230f6402f04371a916c4dd4945b to your computer and use it in GitHub Desktop.
nix = {
maxJobs = 1;
distributedBuilds = true;
buildMachines = [
{ hostName = "nausicaa"; maxJobs = 4; speedFactor = 4; sshKey = "/run/keys/id_buildfarm_nausicaa"; sshUser = "nix"; system = "x86_64-linux"; supportedFeatures = [ ]; }
{ hostName = "calcifer"; maxJobs = 6; speedFactor = 6; sshKey = "/run/keys/id_buildfarm_calacifer"; sshUser = "nix"; system = "x86_64-linux"; supportedFeatures = [ "xilinx-ise" "xilinx-vivado" ]; }
{ hostName = "howl"; maxJobs = 1; speedFactor = 1; sshKey = "/run/keys/id_buildfarm_howl"; sshUser = "myrtle"; system = "x86_64-darwin"; }
];
extraOptions = "auto-optimise-store = true";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment