Bruno BELANYI
631292faf2
By default, packages installed by home-manager do not have their documentation added to man pages and the info database
10 lines
192 B
Nix
10 lines
192 B
Nix
{ ... }:
|
|
{
|
|
# Add documentation for user packages
|
|
programs.man = {
|
|
enable = true;
|
|
generateCaches = true; # Enables the use of `apropos` etc...
|
|
};
|
|
programs.info.enable = true;
|
|
}
|