summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/bash
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2018-03-29 13:47:33 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2018-04-13 18:36:51 +0200
commit80b6513fbf5789ff0208c19a89bae49df2b503ad (patch)
tree7bbd9d2dfaf0b3f19cb56300ba38326d1768f68d /nixos/modules/programs/bash
parentda8fc391a0897a3897630ce322ad19a825a4ac93 (diff)
nixos: enable bash command completion by default
Because it improves out-of-the-box user experience a lot (IMHO). (zsh completion is already on by default.) Remove "programs.bash.enableCompletion = true" from nixos-generate-config.pl, which feels superflous now.
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 c0967316c0c7..69a1a482d074 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -110,7 +110,7 @@ in
};
enableCompletion = mkOption {
- default = false;
+ default = true;
description = ''
Enable Bash completion for all interactive bash shells.
'';