2024-11-16 18:29:01 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
namespace,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkIf;
|
2024-11-16 22:34:40 -08:00
|
|
|
inherit (lib.marleyos) mkEnableModule;
|
2024-11-16 18:29:01 -08:00
|
|
|
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.man;
|
2024-11-16 18:29:01 -08:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options = mkEnableModule "programs.man";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.man.enable = true;
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
MANWIDTH = "80";
|
|
|
|
# TODO: Only set this is nvim is installed. Also install plugin here?
|
|
|
|
MANPAGER = "nvim +NoNeckPain '+set nowrap' +Man!";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|