buildkite-agent service: add bash to the runtimePackages

bash is necessary for nix-shell to work properly
This commit is contained in:
zimbatm 2017-10-26 17:42:14 +01:00
parent e6a3089ec4
commit 74a2d53e0d

View File

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