summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-07-15 02:59:10 -0400
committerseth <[email protected]>2023-07-15 04:15:21 -0400
commite13564fcdc683e601af8dc0290bffc78ecf1273a (patch)
treee925b33b7bfc4cbd180b3c5cd5fe965b1f0a9fde
parent2e3dcc16a85fb3579fbe71bd11a62ea89e653650 (diff)
modules/hercules-ci: use unstable overlay for package
-rw-r--r--modules/nixos/server/services/hercules.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/nixos/server/services/hercules.nix b/modules/nixos/server/services/hercules.nix
index 7b55f6c..ca16efb 100644
--- a/modules/nixos/server/services/hercules.nix
+++ b/modules/nixos/server/services/hercules.nix
@@ -1,7 +1,6 @@
{
config,
lib,
- nixpkgs,
pkgs,
self,
...
@@ -46,7 +45,7 @@ in {
services = {
hercules-ci-agent = {
enable = true;
- package = (import nixpkgs {inherit (pkgs) system;}).hercules-ci-agent;
+ package = pkgs.unstable.hercules-ci-agent;
settings = {
binaryCachesPath = config.age.secrets.binaryCache.path;
clusterJoinTokenPath = config.age.secrets.clusterToken.path;