bash: disable completion by default

This commit is contained in:
Daiderd Jordan 2017-07-11 20:21:09 +02:00
parent a6ca6e7974
commit 1cea7669ef
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -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.
'';
};
};