1
1
Fork 0
nixos/options/custom/programs/man.nix
Myned 53c8575116
git: migrate to forgejo
Squashes 1,331 commits

Signed-off-by: Myned <dev@bjork.tech>
2024-09-12 19:41:21 -05:00

24 lines
526 B
Nix

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