13 lines
237 B
Nix
13 lines
237 B
Nix
{pkgs, ...}: {
|
|
documentation = {
|
|
dev.enable = true;
|
|
|
|
man.cache.enable = true;
|
|
man.cache.generateAtRuntime = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
# linux-manual
|
|
man-pages
|
|
man-pages-posix
|
|
];
|
|
}
|