about summary refs log tree commit diff
path: root/home/documentation/default.nix
blob: 047239ed39406212701f22128f23d5df0c6a0269 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, lib, ... }: {
  # Add documentation for user packages
  config.programs.man = {
    enable = true;
    generateCaches = true; # Enables the use of `apropos` etc...
  };

  config.programs.info.enable = true;
}