18 lines
384 B
Nix
18 lines
384 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ lib, ... }:
|
||
|
{
|
||
|
# Distributed builds!
|
||
|
nix.buildMachines = lib.mkAfter [{
|
||
|
hostName = "oracle-lon01";
|
||
|
system = "aarch64-linux";
|
||
|
maxJobs = 4;
|
||
|
speedFactor = 1;
|
||
|
supportedFeatures = [ ];
|
||
|
mandatoryFeatures = [ ];
|
||
|
}];
|
||
|
nix.distributedBuilds = true;
|
||
|
}
|