nixcache: fix so supercap can be used as a remote builder w/o any of the others

This commit is contained in:
Colin 2023-11-24 22:21:08 +00:00
parent 2ac2aa4e6c
commit b9fefdab80

View File

@ -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;
};
}