summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-05-13 15:32:11 +0200
committerDaiderd Jordan <daiderd@gmail.com>2017-05-13 15:32:11 +0200
commit0495b41b4d852b60fafc6dd3ee08a85cdfa3a926 (patch)
treebbf419e674702addf5ad857423934dd1acc3ff5f /modules
parent6b1e73adb1804eda21fed2bdf936391974236843 (diff)
bash: add enableCompletion option
Diffstat (limited to 'modules')
-rw-r--r--modules/programs/bash.nix35
1 files changed, 28 insertions, 7 deletions
diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix
index 13fdaa8..abd2875 100644
--- a/modules/programs/bash.nix
+++ b/modules/programs/bash.nix
@@ -23,19 +23,21 @@ in
programs.bash.enable = mkOption {
type = types.bool;
default = false;
- description = ''
- Whether to configure bash as an interactive shell.
- '';
+ description = "Whether to configure bash as an interactive shell.";
};
programs.bash.interactiveShellInit = mkOption {
default = "";
- description = ''
- Shell script code called during interactive bash shell initialisation.
- '';
+ description = "Shell script code called during interactive bash shell initialisation.";
type = types.lines;
};
+ programs.bash.enableCompletion = mkOption {
+ type = types.bool;
+ default = true;
+ description = "Enable bash completion for all interactive bash shells.";
+ };
+
};
config = mkIf cfg.enable {
@@ -43,6 +45,11 @@ in
environment.systemPackages =
[ # Include bash package
pkgs.bashInteractive
+ ] ++ optional cfg.enableCompletion pkgs.bash-completion;
+
+ environment.pathsToLink =
+ [ "/etc/bash_completion.d"
+ "/share/bash-completion/completions"
];
environment.loginShell = mkDefault "${shell}/bin/bash -l";
@@ -64,9 +71,23 @@ in
${config.environment.interactiveShellInit}
${cfg.interactiveShellInit}
+ ${optionalString cfg.enableCompletion ''
+ source "${pkgs.bash-completion}/etc/profile.d/bash_completion.sh"
+
+ 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
+ source $m
+ done
+ done
+ eval "$nullglobStatus"
+ unset nullglobStatus p m
+ ''}
+
# Read system-wide modifications.
if test -f /etc/bash.local; then
- . /etc/bash.local
+ source /etc/bash.local
fi
'';