nix-config/modules/dev/docs.nix

12 lines
196 B
Nix
Raw Normal View History

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
man-pages
man-pages-posix
];
documentation = {
dev.enable = true;
man.enable = true;
info.enable = false;
};
}