summaryrefslogtreecommitdiff
path: root/modules/programs/bash
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2024-04-20 02:24:36 +1000
committerGitHub <noreply@github.com>2024-04-20 02:24:36 +1000
commit9e7c20ffd056e406ddd0276ee9d89f09c5e5f4ed (patch)
tree25ca5e08d476298b84d6fd082041682e0d7e7560 /modules/programs/bash
parenteb25dc61a62efcdf47efce6cb17cd5cb3c8f2719 (diff)
parentdef1e23be848848400d1d097d4f044e3c401f9dd (diff)
Merge pull request #932 from wegank/mddoc-remove
treewide: remove lib.mdDoc
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.