Add system terminfo to TERMINFO_DIRS by default

This commit is contained in:
Nathan Henrie 2022-10-19 15:09:28 -06:00
parent ef56fd8979
commit ed993c5038
3 changed files with 12 additions and 1 deletions

View file

@ -177,7 +177,7 @@ in
{
XDG_CONFIG_DIRS = map (path: path + "/etc/xdg") cfg.profiles;
XDG_DATA_DIRS = map (path: path + "/share") cfg.profiles;
TERMINFO_DIRS = map (path: path + "/share/terminfo") cfg.profiles;
TERMINFO_DIRS = map (path: path + "/share/terminfo") cfg.profiles ++ [ "/usr/share/terminfo" ];
EDITOR = mkDefault "nano";
PAGER = mkDefault "less -R";
};