punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
25 lines
458 B
Nix
25 lines
458 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.marleyos) mkEnableModule;
|
|
|
|
cfg = config.marleyos.programs.man;
|
|
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!";
|
|
};
|
|
};
|
|
}
|