From 93c9e56b40530cc627d921cfc255c05b495d4017 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Fri, 3 May 2024 14:49:34 +0200 Subject: nixos: remove the rest of mdDoc --- nixpkgs/nixos/modules/services/hardware/evscript.nix | 8 ++++---- nixpkgs/nixos/modules/services/mail/mailman.nix | 2 +- nixpkgs/nixos/modules/services/mail/public-inbox.nix | 4 ++-- nixpkgs/nixos/modules/services/web-servers/uwsgi.nix | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'nixpkgs/nixos') diff --git a/nixpkgs/nixos/modules/services/hardware/evscript.nix b/nixpkgs/nixos/modules/services/hardware/evscript.nix index 6722887afb4f..4736f088bfd8 100644 --- a/nixpkgs/nixos/modules/services/hardware/evscript.nix +++ b/nixpkgs/nixos/modules/services/hardware/evscript.nix @@ -7,23 +7,23 @@ in { options = with lib; { services.evscript = { - enable = mkEnableOption (mdDoc "the evscript service"); + enable = mkEnableOption "the evscript service"; package = mkOption { - description = mdDoc "evscript package to use for the evscript service"; + description = "evscript package to use for the evscript service"; type = types.package; default = pkgs.evscript; defaultText = literalExpression "pkgs.evscript"; }; devices = mkOption { - description = mdDoc "evdev devices for evscript to listen to"; + description = "evdev devices for evscript to listen to"; type = types.listOf types.path; example = [ "/dev/input/by-path/pci-0000:00:1d.0-usb-0:1.1:1.0-event-kbd" ]; }; script = mkOption { - description = mdDoc "Dyon script for evscript service to run"; + description = "Dyon script for evscript service to run"; type = types.path; }; }; diff --git a/nixpkgs/nixos/modules/services/mail/mailman.nix b/nixpkgs/nixos/modules/services/mail/mailman.nix index d61826de1b5c..6b1aef68245b 100644 --- a/nixpkgs/nixos/modules/services/mail/mailman.nix +++ b/nixpkgs/nixos/modules/services/mail/mailman.nix @@ -294,7 +294,7 @@ in { extraConfig = mkOption { type = types.lines; default = ""; - description = lib.mdDoc "Extra lines for the mailman configuration file"; + description = "Extra lines for the mailman configuration file"; }; }; diff --git a/nixpkgs/nixos/modules/services/mail/public-inbox.nix b/nixpkgs/nixos/modules/services/mail/public-inbox.nix index 8b129b223761..014e619d6f7f 100644 --- a/nixpkgs/nixos/modules/services/mail/public-inbox.nix +++ b/nixpkgs/nixos/modules/services/mail/public-inbox.nix @@ -186,7 +186,7 @@ in type = with types; listOf (enum [ "www" "manifest" ]); default = []; example = [ "www" "manifest" ]; - description = lib.mdDoc "Listings to hide the inbox from"; + description = "Listings to hide the inbox from"; }; options.newsgroup = mkOption { type = with types; nullOr str; @@ -306,7 +306,7 @@ in type = with types; nullOr str; default = null; example = ''git clone https://example.com/''; - description = lib.mdDoc "HTML info about public-inbox's source code"; + description = "HTML info about public-inbox's source code"; }; options.wwwlisting = mkOption { type = with types; enum [ "all" "404" "match=domain" ]; diff --git a/nixpkgs/nixos/modules/services/web-servers/uwsgi.nix b/nixpkgs/nixos/modules/services/web-servers/uwsgi.nix index 6d3a18d71e91..c076375ed857 100644 --- a/nixpkgs/nixos/modules/services/web-servers/uwsgi.nix +++ b/nixpkgs/nixos/modules/services/web-servers/uwsgi.nix @@ -188,7 +188,7 @@ in { type = types.listOf types.str; default = []; example = [ "--chmod-socket=664" ]; - description = lib.mdDoc "Extra command line arguments for uwsgi."; + description = "Extra command line arguments for uwsgi."; }; }; }; -- cgit 1.4.1