summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-09-28 18:39:24 +0200
committerGitHub <noreply@github.com>2016-09-28 18:39:24 +0200
commit7c7e88b45e137d2f0458bae167ede9d5fe551df2 (patch)
tree7f6f5823894b644cfaad81ebc49603f8cb4114d5 /nixos
parentc166675b534f7e9b62485d5a58b5054e7c0ac0bf (diff)
parente8817a2d20037b54ac9fe548c9f31d6e7c44bedf (diff)
downloadnixlib-7c7e88b45e137d2f0458bae167ede9d5fe551df2.tar
nixlib-7c7e88b45e137d2f0458bae167ede9d5fe551df2.tar.gz
nixlib-7c7e88b45e137d2f0458bae167ede9d5fe551df2.tar.bz2
nixlib-7c7e88b45e137d2f0458bae167ede9d5fe551df2.tar.lz
nixlib-7c7e88b45e137d2f0458bae167ede9d5fe551df2.tar.xz
nixlib-7c7e88b45e137d2f0458bae167ede9d5fe551df2.tar.zst
nixlib-7c7e88b45e137d2f0458bae167ede9d5fe551df2.zip
Merge pull request #19046 from rycee/bump/bash-completion
Bump bash completion to 2.4
Diffstat (limited to 'nixos')
-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