From bc3d35f3d0ecffd0b02cc7a7ddea12ae2c63c075 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 10 Dec 2021 10:47:29 +0300 Subject: 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 --- ops/modules/tvl-buildkite.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ops') diff --git a/ops/modules/tvl-buildkite.nix b/ops/modules/tvl-buildkite.nix index 1f0d4e2e7a..b234913389 100644 --- a/ops/modules/tvl-buildkite.nix +++ b/ops/modules/tvl-buildkite.nix @@ -34,8 +34,12 @@ in { inherit name; enable = true; tokenPath = "/run/agenix/buildkite-agent-token"; - runtimePackages = with pkgs; [ curl jq ]; hooks.post-command = "${buildkiteHooks}/bin/post-command"; + + runtimePackages = with pkgs; lib.mkAfter [ + curl + jq + ]; }; }) agents); -- cgit 1.4.1