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:
Vincent Ambo 2021-12-10 10:47:29 +03:00 committed by clbot
parent d4403638cf
commit bc3d35f3d0

View file

@ -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);