nixos-config/system/core/docs.nix

11 lines
197 B
Nix

{pkgs, ...}: {
documentation = {
dev.enable = true;
#man.generateCaches = true;
};
environment.systemPackages = with pkgs; [
linux-manual
man-pages
man-pages-posix
];
}