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