summaryrefslogtreecommitdiff
path: root/host/software/server/build.nix
blob: 44c4562be240336526128c7264c5dc4a8bdf538c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  nix.buildMachines = [ {
    hostName = "majestix";
    sshUser = "common";
    system = "x86_64-linux";
    maxJobs = 16;
    speedFactor = 2;
  } ];

  nix = {
    distributedBuilds = true;
    extraOptions = ''
      builders-use-substitutes = true
    '';
  };
}