nixos: remove all uses of lib.mdDoc

these changes were generated with nixq 0.0.2, by running

  nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix
  nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix
  nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix

two mentions of the mdDoc function remain in nixos/, both of which
are inside of comments.

Since lib.mdDoc is already defined as just id, this commit is a no-op as
far as Nix (and the built manual) is concerned.
This commit is contained in:
stuebinm
2024-04-13 14:54:15 +02:00
committed by Jonathan Ringer
parent 1dd996e59a
commit 6afb255d97
1701 changed files with 13694 additions and 13865 deletions

View File

@@ -15,7 +15,7 @@ in
enable = mkOption {
type = types.bool;
default = false;
description = lib.mdDoc ''
description = ''
Enable Trickster.
'';
};
@@ -25,7 +25,7 @@ in
configFile = mkOption {
type = types.nullOr types.path;
default = null;
description = lib.mdDoc ''
description = ''
Path to configuration file.
'';
};
@@ -33,7 +33,7 @@ in
instance-id = mkOption {
type = types.nullOr types.int;
default = null;
description = lib.mdDoc ''
description = ''
Instance ID for when running multiple processes (default null).
'';
};
@@ -41,7 +41,7 @@ in
log-level = mkOption {
type = types.str;
default = "info";
description = lib.mdDoc ''
description = ''
Level of Logging to use (debug, info, warn, error) (default "info").
'';
};
@@ -49,7 +49,7 @@ in
metrics-port = mkOption {
type = types.port;
default = 8082;
description = lib.mdDoc ''
description = ''
Port that the /metrics endpoint will listen on.
'';
};
@@ -57,7 +57,7 @@ in
origin-type = mkOption {
type = types.enum [ "prometheus" "influxdb" ];
default = "prometheus";
description = lib.mdDoc ''
description = ''
Type of origin (prometheus, influxdb)
'';
};
@@ -65,7 +65,7 @@ in
origin-url = mkOption {
type = types.str;
default = "http://prometheus:9090";
description = lib.mdDoc ''
description = ''
URL to the Origin. Enter it like you would in grafana, e.g., http://prometheus:9090 (default http://prometheus:9090).
'';
};
@@ -73,7 +73,7 @@ in
profiler-port = mkOption {
type = types.nullOr types.port;
default = null;
description = lib.mdDoc ''
description = ''
Port that the /debug/pprof endpoint will listen on.
'';
};
@@ -81,7 +81,7 @@ in
proxy-port = mkOption {
type = types.port;
default = 9090;
description = lib.mdDoc ''
description = ''
Port that the Proxy server will listen on.
'';
};