about summary refs log tree commit diff
path: root/nixpkgs/nixos
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2024-05-03 14:49:34 +0200
committerAlyssa Ross <hi@alyssa.is>2024-05-03 15:12:09 +0200
commit93c9e56b40530cc627d921cfc255c05b495d4017 (patch)
tree834e373f3c1c17bcee3f9c74af16f2c550945e6b /nixpkgs/nixos
parent55932b2d0095bbd5e468a08eb05ab538dcc65f6e (diff)
downloadnixlib-93c9e56b40530cc627d921cfc255c05b495d4017.tar
nixlib-93c9e56b40530cc627d921cfc255c05b495d4017.tar.gz
nixlib-93c9e56b40530cc627d921cfc255c05b495d4017.tar.bz2
nixlib-93c9e56b40530cc627d921cfc255c05b495d4017.tar.lz
nixlib-93c9e56b40530cc627d921cfc255c05b495d4017.tar.xz
nixlib-93c9e56b40530cc627d921cfc255c05b495d4017.tar.zst
nixlib-93c9e56b40530cc627d921cfc255c05b495d4017.zip
nixos: remove the rest of mdDoc
Diffstat (limited to 'nixpkgs/nixos')
-rw-r--r--nixpkgs/nixos/modules/services/hardware/evscript.nix8
-rw-r--r--nixpkgs/nixos/modules/services/mail/mailman.nix2
-rw-r--r--nixpkgs/nixos/modules/services/mail/public-inbox.nix4
-rw-r--r--nixpkgs/nixos/modules/services/web-servers/uwsgi.nix2
4 files changed, 8 insertions, 8 deletions
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 <a href="https://example.com/">https://example.com/</a>'';
-              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.";
       };
     };
   };