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 }; }; }