From 784330e27539b55d79959d979df50ff0cb011e26 Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 15 Apr 2024 20:12:24 +0300 Subject: [PATCH] treewide: nuke remaining mdDoc leftovers bors when --- nixos/modules/programs/bash/bash.nix | 2 +- nixos/modules/services/monitoring/grafana.nix | 2 +- nixos/modules/services/web-apps/coder.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix index 87fb29ed5bbe..21ef8338d8dd 100644 --- a/nixos/modules/programs/bash/bash.nix +++ b/nixos/modules/programs/bash/bash.nix @@ -30,7 +30,7 @@ in /* enable = mkOption { default = true; - description = lib.mdDoc '' + description = '' Whenever to configure Bash as an interactive shell. Note that this tries to make Bash the default {option}`users.defaultUserShell`, diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index e691cd64497f..9d453c539482 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -682,7 +682,7 @@ in # TODO Add "instrument_queries" option when upgrading to grafana 10.0 # 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; # type = types.bool; # }; diff --git a/nixos/modules/services/web-apps/coder.nix b/nixos/modules/services/web-apps/coder.nix index 705eee56ae3f..318a7c8fc135 100644 --- a/nixos/modules/services/web-apps/coder.nix +++ b/nixos/modules/services/web-apps/coder.nix @@ -75,7 +75,7 @@ in { environment = { extra = mkOption { 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 = {}; example = { CODER_OAUTH2_GITHUB_ALLOW_SIGNUPS = true; @@ -84,7 +84,7 @@ in { }; file = mkOption { 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; }; };