summaryrefslogtreecommitdiff
path: root/modules/documentation/default.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-14 23:02:32 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-19 04:05:50 +0200
commitdef1e23be848848400d1d097d4f044e3c401f9dd (patch)
tree7a69686dea36e304c788531fda90bc3edeee86fd /modules/documentation/default.nix
parent99b3f9a1f5d2604d542f367d38001dfa40eea7b9 (diff)
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/documentation/default.nix')
-rw-r--r--modules/documentation/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/documentation/default.nix b/modules/documentation/default.nix
index 2f3bb9a..10bcbd3 100644
--- a/modules/documentation/default.nix
+++ b/modules/documentation/default.nix
@@ -88,7 +88,7 @@ in
documentation.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether to install documentation of packages from
{option}`environment.systemPackages` into the generated system path.
@@ -100,7 +100,7 @@ in
documentation.man.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether to install manual pages and the {command}`man` command.
This also includes "man" outputs.
'';
@@ -109,7 +109,7 @@ in
documentation.info.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether to install info pages and the {command}`info` command.
This also includes "info" outputs.
'';
@@ -118,7 +118,7 @@ in
documentation.doc.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether to install documentation distributed in packages' `/share/doc`.
Usually plain text and/or HTML.
This also includes "doc" outputs.