11 lines
333 B
Nix
11 lines
333 B
Nix
{ config, lib, depot, pkgs, ... }:
|
|
|
|
{
|
|
services.hercules-ci-agents.private-void = {
|
|
package = lib.mkForce depot.packages.hercules-ci-agent;
|
|
settings = {
|
|
clusterJoinTokenPath = config.age.secrets.hci-token-private-void.path;
|
|
binaryCachesPath = config.age.secrets.hci-cache-config-private-void.path;
|
|
};
|
|
};
|
|
}
|