nix-config/hosts/common/global/documentation.nix
2024-01-07 15:40:18 +01:00

9 lines
267 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [man-pages man-pages-posix];
documentation.dev.enable = true;
documentation.man = {
# In order to enable to mandoc man-db has to be disabled.
man-db.enable = false;
mandoc.enable = true;
};
}