diff options
author | lassulus <lassulus@lassul.us> | 2019-01-28 22:51:27 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-01-28 22:51:27 +0100 |
commit | b74a981dcf4c0cb4a17270ffb3a2b41d263d99e9 (patch) | |
tree | 59ca993e6c03550eb40d7946833623250e7b9432 /makefu/2configs/remote-build | |
parent | 1abab2247ed3c64b9cac6efaed22c3b214117a4f (diff) | |
parent | dc7caec1a74f79c619e14d22ee5f0a48064dd129 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/remote-build')
-rw-r--r-- | makefu/2configs/remote-build/aarch64-community.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/makefu/2configs/remote-build/aarch64-community.nix b/makefu/2configs/remote-build/aarch64-community.nix new file mode 100644 index 000000000..d57eacd68 --- /dev/null +++ b/makefu/2configs/remote-build/aarch64-community.nix @@ -0,0 +1,15 @@ +{ + nix = { + distributedBuilds = true; + buildMachines = [ + { + hostName = "aarch64.nixos.community"; + maxJobs = 64; + sshKey = toString <secrets/nixos-community>; + sshUser = "makefu"; + system = "aarch64-linux"; + supportedFeatures = [ "big-parallel" ]; + } + ]; + }; +} |