Commit 74a2d53e authored by zimbatm's avatar zimbatm
Browse files

buildkite-agent service: add bash to the runtimePackages

bash is necessary for nix-shell to work properly
parent e6a3089e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -33,8 +33,8 @@ in
      };

      runtimePackages = mkOption {
        default = [ pkgs.nix ];
        defaultText = "[ pkgs.nix ]";
        default = [ pkgs.bash pkgs.nix ];
        defaultText = "[ pkgs.bash pkgs.nix ]";
        description = "Add programs to the buildkite-agent environment";
        type = types.listOf types.package;
      };