fix(tvl-buildkite): Add missing runtimePackages back
Turns out that the type of this option is not concatenative and it replaces the packages needed to run Buildkite if set. Change-Id: I9f52572bc165bccdd8c6518cfdf7b8967f7a50d0
This commit is contained in:
parent
d4403638cf
commit
bc3d35f3d0
1 changed files with 5 additions and 1 deletions
|
@ -34,8 +34,12 @@ in {
|
||||||
inherit name;
|
inherit name;
|
||||||
enable = true;
|
enable = true;
|
||||||
tokenPath = "/run/agenix/buildkite-agent-token";
|
tokenPath = "/run/agenix/buildkite-agent-token";
|
||||||
runtimePackages = with pkgs; [ curl jq ];
|
|
||||||
hooks.post-command = "${buildkiteHooks}/bin/post-command";
|
hooks.post-command = "${buildkiteHooks}/bin/post-command";
|
||||||
|
|
||||||
|
runtimePackages = with pkgs; lib.mkAfter [
|
||||||
|
curl
|
||||||
|
jq
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}) agents);
|
}) agents);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue