nix-config/hosts/common/dev/docs.nix
2023-05-18 13:57:58 +09:00

12 lines
196 B
Nix

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