summaryrefslogtreecommitdiff
path: root/modules/programs/bash
diff options
context:
space:
mode:
Diffstat (limited to 'modules/programs/bash')
-rw-r--r--modules/programs/bash/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/programs/bash/default.nix b/modules/programs/bash/default.nix
index 61f82e0..2e27ff9 100644
--- a/modules/programs/bash/default.nix
+++ b/modules/programs/bash/default.nix
@@ -12,19 +12,19 @@ in
programs.bash.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc "Whether to configure bash as an interactive shell.";
+ description = "Whether to configure bash as an interactive shell.";
};
programs.bash.interactiveShellInit = mkOption {
default = "";
- description = lib.mdDoc "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 = false;
- description = lib.mdDoc ''
+ description = ''
Enable bash completion for all interactive bash shells.
NOTE. This doesn't work with bash 3.2, which is the default on macOS.