summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/remote-build/gum.nix
blob: 98e2e58b5b4ee133e10491ed5ddbec61e5459a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  nix = {
    distributedBuilds = true;
    buildMachines = [
      {
        hostName = "gum.krebsco.de";
        maxJobs = 8;
        sshKey = toString <secrets/id_nixBuild>;
        sshUser = "nixBuild";
        system = "x86_64-linux";
        supportedFeatures = [ ];
      }
    ];
  };
}