summaryrefslogtreecommitdiff
path: root/modules/programs/bash/default.nix
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2023-06-24 23:42:39 +0200
committerGitHub <noreply@github.com>2023-06-24 23:42:39 +0200
commitace0ef2a26bc428e768a5926eae95a63cfcf8b52 (patch)
tree60506865a377eedabf6b77e2da800775c2435d41 /modules/programs/bash/default.nix
parent6460468e7a3e1290f132fee4170ebeaa127f6f32 (diff)
parent9d6702cf2b81f5d0ef9d628d99e8deb45f84b454 (diff)
Merge pull request #707 from emilazy/options-markdown-migration
Migrate option documentation to Markdown
Diffstat (limited to 'modules/programs/bash/default.nix')
-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 6ebd923..47bd1f3 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 = "Whether to configure bash as an interactive shell.";
+ description = lib.mdDoc "Whether to configure bash as an interactive shell.";
};
programs.bash.interactiveShellInit = mkOption {
default = "";
- description = "Shell script code called during interactive bash shell initialisation.";
+ description = lib.mdDoc "Shell script code called during interactive bash shell initialisation.";
type = types.lines;
};
programs.bash.enableCompletion = mkOption {
type = types.bool;
default = false;
- description = ''
+ description = lib.mdDoc ''
Enable bash completion for all interactive bash shells.
NOTE. This doesn't work with bash 3.2, which is the default on macOS.