diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-09-01T00·57-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-09-01T01·07+0000 |
commit | 912268ed5e009c08ad5309673d3c5c5633453a0a (patch) | |
tree | db2e2329b0c3b0499ebeca4f5994e35408846570 | |
parent | 7a83b8fe40eac0b05123e6cc3f4faecf86aed915 (diff) |
feat(gs/system): Add nixbuild.net as remote builder r/1753
Change-Id: I3b071cc91af5ee896e88c10d6594333ff4eddf77 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1922 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
-rw-r--r-- | users/glittershark/system/system/modules/common.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/users/glittershark/system/system/modules/common.nix b/users/glittershark/system/system/modules/common.nix index b6eacd862999..884f0a9a7d13 100644 --- a/users/glittershark/system/system/modules/common.nix +++ b/users/glittershark/system/system/modules/common.nix @@ -124,6 +124,11 @@ in sshKey = "/home/grfn/.ssh/id_rsa"; system = "x86_64-darwin"; maxJobs = 8; # 16 cpus + } { + hostName = "eu.nixbuild.net"; + system = "x86_64-linux"; + maxJobs = 100; + supportedFeatures = [ "benchmark" "big-parallel" ]; }]; distributedBuilds = true; |