2023-01-08 21:34:55 +02:00
|
|
|
{ config, lib, inputs, pkgs, ... }:
|
2022-11-23 17:24:04 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
services.hercules-ci-agents.private-void = {
|
2023-01-08 21:34:55 +02:00
|
|
|
package = lib.mkForce inputs.self.packages.${pkgs.system}.hercules-ci-agent;
|
2022-11-23 17:24:04 +02:00
|
|
|
settings = {
|
|
|
|
clusterJoinTokenPath = config.age.secrets.hci-token-private-void.path;
|
|
|
|
binaryCachesPath = config.age.secrets.hci-cache-config-private-void.path;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|