Created
February 8, 2017 09:35
-
-
Save expipiplus1/faf82230f6402f04371a916c4dd4945b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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