1
1
Fork 0
nixos/options/custom/programs/man.nix

25 lines
528 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.programs.man;
in {
options.custom.programs.man.enable = mkOption {default = false;};
config = mkIf cfg.enable {
# Enable as much offline docs as possible
# https://wiki.nixos.org/wiki/Man_pages
documentation = {
dev.enable = true; # Library manpages
man = {
generateCaches = true; # Index manpages for search
man-db.enable = false; # !! Hangs on building man-cache
mandoc.enable = true;
};
};
};
}