depot/cluster/services/hercules-ci-multi-agent/orgs/private-void.nix

12 lines
333 B
Nix
Raw Normal View History

2023-03-07 02:26:07 +02:00
{ config, lib, depot, pkgs, ... }:
{
services.hercules-ci-agents.private-void = {
2023-03-07 02:26:07 +02:00
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;
};
};
}