nixos-config/systemProfiles/core/docs.nix
2024-10-25 10:39:48 +02:00

15 lines
272 B
Nix

{
self,
super,
root,
}: {pkgs, ...}: {
documentation = {
dev.enable = true;
# man.generateCaches = true; # this does slow down builds by quite a lot
};
environment.systemPackages = with pkgs; [
linux-manual
man-pages
man-pages-posix
];
}