1
1
Fork 0
nixos/options/custom/programs/man.nix
Myned ab485dec35
nix: format with alejandra
Signed-off-by: Myned <dev@bjork.tech>
2024-09-12 20:50:53 -05:00

24 lines
528 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;
};
};
};
}