9 lines
267 B
Nix
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;
|
|
};
|
|
}
|