Merge pull request #304327 from K900/bors-when

treewide: nuke remaining mdDoc leftovers
This commit is contained in:
K900 2024-04-15 20:14:37 +03:00 committed by GitHub
commit fc69edccf5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ in
/* /*
enable = mkOption { enable = mkOption {
default = true; default = true;
description = lib.mdDoc '' description = ''
Whenever to configure Bash as an interactive shell. Whenever to configure Bash as an interactive shell.
Note that this tries to make Bash the default Note that this tries to make Bash the default
{option}`users.defaultUserShell`, {option}`users.defaultUserShell`,

View File

@ -682,7 +682,7 @@ in
# TODO Add "instrument_queries" option when upgrading to grafana 10.0 # TODO Add "instrument_queries" option when upgrading to grafana 10.0
# instrument_queries = mkOption { # instrument_queries = mkOption {
# description = lib.mdDoc "Set to `true` to add metrics and tracing for database queries."; # description = "Set to `true` to add metrics and tracing for database queries.";
# default = false; # default = false;
# type = types.bool; # type = types.bool;
# }; # };

View File

@ -75,7 +75,7 @@ in {
environment = { environment = {
extra = mkOption { extra = mkOption {
type = types.attrs; type = types.attrs;
description = lib.mdDoc "Extra environment variables to pass run Coder's server with. See Coder documentation."; description = "Extra environment variables to pass run Coder's server with. See Coder documentation.";
default = {}; default = {};
example = { example = {
CODER_OAUTH2_GITHUB_ALLOW_SIGNUPS = true; CODER_OAUTH2_GITHUB_ALLOW_SIGNUPS = true;
@ -84,7 +84,7 @@ in {
}; };
file = mkOption { file = mkOption {
type = types.nullOr types.path; type = types.nullOr types.path;
description = lib.mdDoc "Systemd environment file to add to Coder."; description = "Systemd environment file to add to Coder.";
default = null; default = null;
}; };
}; };