diff --git a/cluster/services/hercules-ci-multi-agent/orgs/max.nix b/cluster/services/hercules-ci-multi-agent/orgs/max.nix index 69e96d8..a74e9c6 100644 --- a/cluster/services/hercules-ci-multi-agent/orgs/max.nix +++ b/cluster/services/hercules-ci-multi-agent/orgs/max.nix @@ -1,7 +1,8 @@ -{ config, inputs, pkgs, ... }: +{ config, lib, inputs, pkgs, ... }: { services.hercules-ci-agents.max = { + package = lib.mkForce inputs.self.packages.${pkgs.system}.hercules-ci-agent; settings = { clusterJoinTokenPath = config.age.secrets.hci-token-max.path; binaryCachesPath = config.age.secrets.hci-cache-config-max.path; diff --git a/cluster/services/hercules-ci-multi-agent/orgs/nixpak.nix b/cluster/services/hercules-ci-multi-agent/orgs/nixpak.nix index 6a6d6bc..44909b6 100644 --- a/cluster/services/hercules-ci-multi-agent/orgs/nixpak.nix +++ b/cluster/services/hercules-ci-multi-agent/orgs/nixpak.nix @@ -1,7 +1,8 @@ -{ config, inputs, pkgs, ... }: +{ config, lib, inputs, pkgs, ... }: { services.hercules-ci-agents.nixpak = { + package = lib.mkForce inputs.self.packages.${pkgs.system}.hercules-ci-agent; settings = { clusterJoinTokenPath = config.age.secrets.hci-token-nixpak.path; binaryCachesPath = config.age.secrets.hci-cache-config-nixpak.path; diff --git a/cluster/services/hercules-ci-multi-agent/orgs/private-void.nix b/cluster/services/hercules-ci-multi-agent/orgs/private-void.nix index 1abf677..eb9619f 100644 --- a/cluster/services/hercules-ci-multi-agent/orgs/private-void.nix +++ b/cluster/services/hercules-ci-multi-agent/orgs/private-void.nix @@ -1,7 +1,8 @@ -{ config, inputs, pkgs, ... }: +{ config, lib, inputs, pkgs, ... }: { services.hercules-ci-agents.private-void = { + package = lib.mkForce inputs.self.packages.${pkgs.system}.hercules-ci-agent; settings = { clusterJoinTokenPath = config.age.secrets.hci-token-private-void.path; binaryCachesPath = config.age.secrets.hci-cache-config-private-void.path;