10 lines
202 B
Nix
10 lines
202 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
man-pages
|
|
man-pages-posix
|
|
];
|
|
|
|
documentation.dev.enable = true;
|
|
documentation.man.enable = true;
|
|
documentation.enable = true;
|
|
}
|