From e1000fc1a6d33e82ecf984a2a2b3fda5badd7049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A4in=C3=B6=20J=C3=A4rvel=C3=A4?= Date: Thu, 12 Dec 2019 09:08:02 +0200 Subject: [PATCH] bash: Let bash load completions lazily As described in detail here: https://github.com/NixOS/nixpkgs/issues/32533 bash will load completion scripts in $p/share/bash-completion/completions/ on startup instead of letting bash-completion do it's lazy loading. Bash startup will then slow down (very noticeable when bash-completion is installed in a profile). This commit leaves loading of scripts in the hands of bash-completion, improving startup time for everyone using `enableCompletion`. Fixes #101 --- modules/programs/bash/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/bash/default.nix b/modules/programs/bash/default.nix index 6f5c8e7b..7d13c690 100644 --- a/modules/programs/bash/default.nix +++ b/modules/programs/bash/default.nix @@ -83,7 +83,7 @@ in nullglobStatus=$(shopt -p nullglob) shopt -s nullglob for p in $NIX_PROFILES; do - for m in "$p/etc/bash_completion.d/"* "$p/share/bash-completion/completions/"*; do + for m in "$p/etc/bash_completion.d/"*; do source $m done done