treewide: remove lib.mdDoc

This commit is contained in:
Weijia Wang 2024-04-14 23:02:32 +02:00
parent 99b3f9a1f5
commit def1e23be8
102 changed files with 771 additions and 775 deletions

View file

@ -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.