From cd756c1a0ec8010d78a26333230c981d61f5da1f Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Fri, 20 Jun 2025 10:33:10 +0200 Subject: [PATCH] nix: documentation: enable dev manpages --- modules/system/nix/documentation.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/system/nix/documentation.nix b/modules/system/nix/documentation.nix index 20187a4..41b5337 100644 --- a/modules/system/nix/documentation.nix +++ b/modules/system/nix/documentation.nix @@ -10,6 +10,9 @@ # output of packages info.enable = false; + # Whether to install documentation targeted at developers. + dev.enable = true; + man = { # Whether to install manual pages # this means packages that provide a `man` output will have said output @@ -22,7 +25,7 @@ generateCaches = false; # Whether to enable mandoc as the default man page viewer. - mandoc.enable = false; # my default manpage viewer is helix, so this isn't necessary + mandoc.enable = false; # my default manpage viewer is bat, so this isn't necessary }; }; }