From b9fefdab80a0e2e81c5bcf80c31089768051986c Mon Sep 17 00:00:00 2001 From: Colin Date: Fri, 24 Nov 2023 22:21:08 +0000 Subject: [PATCH] nixcache: fix so supercap can be used as a remote builder w/o any of the others --- hosts/modules/nixcache.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/modules/nixcache.nix b/hosts/modules/nixcache.nix index c084df3a..4e37fbfa 100644 --- a/hosts/modules/nixcache.nix +++ b/hosts/modules/nixcache.nix @@ -107,6 +107,6 @@ in sshKey = config.sops.secrets."nixremote_ssh_key".path; }) ]; - nix.distributedBuilds = lib.mkIf (cfg.remote-builders.desko || cfg.remote-builders.servo) true; + nix.distributedBuilds = lib.mkIf (cfg.remote-builders.desko || cfg.remote-builders.servo || cfg.remote-builders.supercap) true; }; }