marleyos/home/man/default.nix
2024-10-29 21:27:57 -07:00

14 lines
251 B
Nix

{
lib,
config,
...
}: {
programs.man.enable = true;
programs.fish = lib.mkIf config.programs.fish.enable {
interactiveShellInit = ''
set -gx MANWIDTH 80
set -gx MANPAGER 'nvim +NoNeckPain "+set nowrap" +Man!'
'';
};
}