nixos/porcorosso: add totoro as a builder
This commit is contained in:
parent
24ba5c1c36
commit
a71cb99af8
2 changed files with 11 additions and 2 deletions
|
@ -2,10 +2,10 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
{ pkgs, depot, lib, ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
# Distributed builds!
|
||||
nix.buildMachines = [ {
|
||||
nix.buildMachines = lib.mkAfter [ {
|
||||
hostName = "whitby";
|
||||
system = "x86_64-linux";
|
||||
maxJobs = 64;
|
||||
|
|
|
@ -226,6 +226,15 @@ in {
|
|||
host all all ::1/128 trust
|
||||
'';
|
||||
|
||||
nix.buildMachines = [ {
|
||||
hostName = "totoro";
|
||||
system = "x86_64-linux";
|
||||
maxJobs = 4;
|
||||
speedFactor = 2;
|
||||
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
||||
mandatoryFeatures = [ ];
|
||||
}];
|
||||
|
||||
|
||||
# This value determines the NixOS release with which your system is to be
|
||||
# compatible, in order to avoid breaking some software such as database
|
||||
|
|
Loading…
Reference in a new issue