1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

buildkite-agent: allow 'types.path' in runtimePackages

This might be useful when some non-nix packages need to be provided,
e.g. 'brew'.
This commit is contained in:
Roman Melnikov 2023-05-16 15:58:30 +08:00
parent 0dbf1c2fb1
commit 6236fd1923
No known key found for this signature in database
GPG key ID: 8931E8ED1EE2E537

View file

@ -56,7 +56,7 @@ let
default = [ pkgs.bash pkgs.gnutar pkgs.gzip pkgs.git pkgs.nix ];
defaultText = literalExpression "[ pkgs.bash pkgs.gnutar pkgs.gzip pkgs.git pkgs.nix ]";
description = mdDoc "Add programs to the buildkite-agent environment";
type = types.listOf types.package;
type = types.listOf (types.either types.package types.path);
};
tokenPath = mkOption {