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:
Samuel Dionne-Riel 2021-11-26 02:17:15 -05:00
parent 8e92630aae
commit 8608d393e8

View file

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