depot/cluster/services/hercules-ci-multi-agent/orgs/max.nix
2023-03-11 19:48:30 +01:00

12 lines
306 B
Nix

{ config, lib, depot, pkgs, ... }:
{
services.hercules-ci-agents.max = {
package = lib.mkForce depot.packages.hercules-ci-agent;
settings = {
clusterJoinTokenPath = config.age.secrets.hci-token-max.path;
binaryCachesPath = config.age.secrets.hci-cache-config-max.path;
};
};
}