🔨 builder: no emulation

This commit is contained in:
2023-07-01 16:27:52 -04:00
parent 11d76e31c0
commit 4f1f81e425
2 changed files with 11 additions and 12 deletions

View File

@ -8,7 +8,6 @@ let
modules = [
"${nixpkgs}/nixos/modules/profiles/macos-builder.nix"
{
boot.binfmt.emulatedSystems = [ "x86_64-linux" ];
system.nixos.revision = nixpkgs.lib.mkForce null;
virtualisation.host.pkgs = pkgs;
virtualisation.darwin-builder.hostPort = port;
@ -22,14 +21,14 @@ in
nix.buildMachines = [
{
hostName = "builder";
systems = [ "aarch64-linux" "x86_64-linux" ];
systems = [ "aarch64-linux" ];
maxJobs = 4;
speedFactor = 2;
supportedFeatures = [ "kvm" "benchmark" "big-parallel" ];
}
{
hostName = "plato";
systems = [ "x86_64-linux" "aarch64-linux" ];
systems = [ "x86_64-linux" ];
maxJobs = 6;
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
}