15 lines
272 B
Nix
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
|
|
];
|
|
}
|