nix-config/home/documentation.nix
Bruno BELANYI 631292faf2 home: add documentation
By default, packages installed by home-manager do not have their
documentation added to man pages and the info database
2021-03-03 17:02:48 +00:00

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;
}