summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/remote-build/aarch64-community.nix
blob: d57eacd68b6dd7850e9de0dbfa952a6d1bb9a679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  nix = {
    distributedBuilds = true;
    buildMachines = [
      {
        hostName = "aarch64.nixos.community";
        maxJobs = 64;
        sshKey = toString <secrets/nixos-community>;
        sshUser = "makefu";
        system = "aarch64-linux";
        supportedFeatures = [ "big-parallel" ];
      }
    ];
  };
}