summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-07-11 20:21:09 +0200
committerDaiderd Jordan <daiderd@gmail.com>2017-07-11 20:21:09 +0200
commit1cea7669efca6d96f626f77438c22f15c8a2d7b4 (patch)
tree7b7210af25f8f28cef2ba776ddb525d1247eca68 /modules
parenta6ca6e79743a193069303ce954908ca4bc57ab0f (diff)
bash: disable completion by default
Diffstat (limited to 'modules')
-rw-r--r--modules/programs/bash.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix
index 13b676d..0b84c62 100644
--- a/modules/programs/bash.nix
+++ b/modules/programs/bash.nix
@@ -34,8 +34,12 @@ in
programs.bash.enableCompletion = mkOption {
type = types.bool;
- default = true;
- description = "Enable bash completion for all interactive bash shells.";
+ default = false;
+ description = ''
+ Enable bash completion for all interactive bash shells.
+
+ NOTE. This doesn't work with bash 3.2, which is the default on macOS.
+ '';
};
};