summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2024-05-22 08:15:35 +1000
committerGitHub <noreply@github.com>2024-05-22 08:15:35 +1000
commiteac4f25028c1975a939c8f8fba95c12f8a25e01c (patch)
treef733f0584658cbd0ddccb2d069973a450747df10 /modules
parent8bf083c992e2bc0a8c07f5860d3866739b698883 (diff)
parent251eaabfa0f421a864e75e6b1a23c2c73e7bc332 (diff)
Merge pull request #955 from qowoz/hercules-security
hercules-ci-agent: fix crash calling `security`
Diffstat (limited to 'modules')
-rw-r--r--modules/services/hercules-ci-agent/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/hercules-ci-agent/default.nix b/modules/services/hercules-ci-agent/default.nix
index d9fbf37..fc3d952 100644
--- a/modules/services/hercules-ci-agent/default.nix
+++ b/modules/services/hercules-ci-agent/default.nix
@@ -25,7 +25,7 @@ in
launchd.daemons.hercules-ci-agent = {
script = "exec ${cfg.package}/bin/hercules-ci-agent --config ${cfg.tomlFile}";
- path = [ config.nix.package ];
+ path = [ config.nix.package config.environment.systemPath ];
environment = {
NIX_SSL_CERT_FILE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
};