From 1cea7669efca6d96f626f77438c22f15c8a2d7b4 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Tue, 11 Jul 2017 20:21:09 +0200 Subject: [PATCH] bash: disable completion by default --- modules/programs/bash.nix | 8 ++++++-- 1 file 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. + ''; }; };