mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
nix-bash-completions: Reduce priority for Nix 2.4
Reducing the priority makes the system build prefer the Nix-provided completions, for e.g. the new `nix` commands.
This commit is contained in:
parent
8e92630aae
commit
8608d393e8
|
@ -32,5 +32,7 @@ stdenv.mkDerivation rec {
|
|||
license = licenses.bsd3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ hedning ];
|
||||
# Set a lower priority such that the newly provided completion from Nix 2.4 are preferred.
|
||||
priority = 10;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue