summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2022-11-15 17:44:04 +0000
committerGitHub <noreply@github.com>2022-11-15 17:44:04 +0000
commit4182ad42d5fb5001adb1f61bec3a04fae0eecb95 (patch)
treed1bad84a5c3ca54478e1e13ce2bcde9d241284f9 /modules
parentcfc0125eafadc9569d3d6a16ee928375b77e3100 (diff)
parent6b73d2c605cd1a063931f722151d00dc1157275d (diff)
Merge pull request #553 from n8henrie/issue_543
Add system terminfo to TERMINFO_DIRS by default
Diffstat (limited to 'modules')
-rw-r--r--modules/environment/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/environment/default.nix b/modules/environment/default.nix
index 28e33ca..1fed0f4 100644
--- a/modules/environment/default.nix
+++ b/modules/environment/default.nix
@@ -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";
};