summary refs log tree commit diff
path: root/nixos/modules/misc
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-29 19:33:50 +0200
committerpennae <github@quasiparticle.net>2022-08-31 16:32:54 +0200
commitbd5636884879a6ef672703dd51f3e398a58c3b8e (patch)
tree3a0cd1e3fef09aeff2b1935865677ec0cd6cbbbd /nixos/modules/misc
parent515c4727faaa86ad9ef9c270d34c0de30cf8d2bc (diff)
downloadnixpkgs-bd5636884879a6ef672703dd51f3e398a58c3b8e.tar
nixpkgs-bd5636884879a6ef672703dd51f3e398a58c3b8e.tar.gz
nixpkgs-bd5636884879a6ef672703dd51f3e398a58c3b8e.tar.bz2
nixpkgs-bd5636884879a6ef672703dd51f3e398a58c3b8e.tar.lz
nixpkgs-bd5636884879a6ef672703dd51f3e398a58c3b8e.tar.xz
nixpkgs-bd5636884879a6ef672703dd51f3e398a58c3b8e.tar.zst
nixpkgs-bd5636884879a6ef672703dd51f3e398a58c3b8e.zip
nixos/*: md-convert hidden plaintext options
most of these are hidden because they're either part of a submodule that
doesn't have its type rendered (eg because the submodule type is used in
an either type) or because they are explicitly hidden. some of them are
merely hidden from nix-doc-munge by how their option is put together.
Diffstat (limited to 'nixos/modules/misc')
-rw-r--r--nixos/modules/misc/documentation/test.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/misc/documentation/test.nix b/nixos/modules/misc/documentation/test.nix
index 1eaa63b1fb6..dd1588abdb4 100644
--- a/nixos/modules/misc/documentation/test.nix
+++ b/nixos/modules/misc/documentation/test.nix
@@ -30,7 +30,7 @@ let
     specialArgs.someArg.myModule = { lib, ... }: {
       options.foobar = lib.mkOption {
         type = lib.types.str;
-        description = "The foobar option was added via specialArgs";
+        description = lib.mdDoc "The foobar option was added via specialArgs";
         default = "qux";
       };
     };