diff options
author | makefu <github@syntax-fehler.de> | 2019-01-28 08:29:54 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-01-28 08:29:54 +0100 |
commit | a3919eb1af48fadfea06e17f5245b7748f497191 (patch) | |
tree | 012793a2b53f6f8b3eb6bf4b44f6455296f55cc2 /makefu/2configs | |
parent | 0ead7ae0a71247581eb968c701e02af782424cd0 (diff) |
ma aarch64-community: add builder
Diffstat (limited to 'makefu/2configs')
-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" ]; + } + ]; + }; +} |