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