2023-03-07 01:26:07 +01:00
|
|
|
{ config, lib, depot, pkgs, ... }:
|
2022-11-23 16:24:04 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
services.hercules-ci-agents.nixpak = {
|
2023-10-26 01:35:31 +02:00
|
|
|
enable = true;
|
2023-10-26 02:14:20 +02:00
|
|
|
package = depot.inputs.hercules-ci-agent.packages.hercules-ci-agent;
|
2022-11-23 16:24:04 +01:00
|
|
|
settings = {
|
|
|
|
clusterJoinTokenPath = config.age.secrets.hci-token-nixpak.path;
|
|
|
|
binaryCachesPath = config.age.secrets.hci-cache-config-nixpak.path;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|