From eb07a416b4af15a9b9cc0c10b6a0dea71f65e0f9 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 27 Nov 2023 14:18:54 +0000 Subject: [PATCH] nixcache: disable big-parallel for servo --- hosts/modules/nixcache.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/modules/nixcache.nix b/hosts/modules/nixcache.nix index ea7f753d4..170bdedda 100644 --- a/hosts/modules/nixcache.nix +++ b/hosts/modules/nixcache.nix @@ -92,7 +92,9 @@ in protocol = "ssh-ng"; maxJobs = 3; # constrained by ram, for things like webkitgtk, etc. speedFactor = 2; - supportedFeatures = [ "big-parallel" ]; + supportedFeatures = [ + # "big-parallel" # it can't reliably build webkitgtk + ]; mandatoryFeatures = [ ]; sshUser = "nixremote"; sshKey = config.sops.secrets."nixremote_ssh_key".path;