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