From d3dff8cefb4fac62fc350c8946bc0132eb6d1153 Mon Sep 17 00:00:00 2001 From: Daniel V Date: Sat, 9 May 2020 15:39:25 -0400 Subject: [PATCH] This fixes bash completion for me, though it may not be the best way. Hopefully the pull request will go through or tell me how to do it better --- modules/programs/bash/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/programs/bash/default.nix b/modules/programs/bash/default.nix index 7d13c69..1e60d84 100644 --- a/modules/programs/bash/default.nix +++ b/modules/programs/bash/default.nix @@ -86,6 +86,9 @@ in for m in "$p/etc/bash_completion.d/"*; do source $m done + for m in "$p/share/bash-completion/completions/"*; do + source $m + done done eval "$nullglobStatus" unset nullglobStatus p m