summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/bash
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2016-09-28 17:46:29 +0200
committerRobert Helgesson <robert@rycee.net>2016-09-28 17:46:29 +0200
commite8817a2d20037b54ac9fe548c9f31d6e7c44bedf (patch)
tree376c71b1b4a8d7e9febe5251616758855b6ed391 /nixos/modules/programs/bash
parentdbe350f5d002579b124a1420e5d78e6b201533bf (diff)
bash-completion: change attribute name
This changes the attribute name of bash-completion from `bashCompletion` to `bash-completion`. Keeps `bashCompletion` as an alias for the new name.
Diffstat (limited to 'nixos/modules/programs/bash')
-rw-r--r--nixos/modules/programs/bash/bash.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix
index c09bcfb70e24..e23849d350b4 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -16,7 +16,7 @@ let
# programmable completion. If we do, enable all modules installed in
# the system (and user profile).
if shopt -q progcomp &>/dev/null; then
- . "${pkgs.bashCompletion}/etc/profile.d/bash_completion.sh"
+ . "${pkgs.bash-completion}/etc/profile.d/bash_completion.sh"
nullglobStatus=$(shopt -p nullglob)
shopt -s nullglob
for p in $NIX_PROFILES; do