summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNathan Henrie <nate@n8henrie.com>2022-10-19 15:09:28 -0600
committerNathan Henrie <nate@n8henrie.com>2022-10-19 15:09:28 -0600
commited993c5038330c9dc0caf08bef7b64fc2f942f75 (patch)
tree7d1e29d81015b3408ee76c3484fa848da53179e5 /modules
parentef56fd8979b5f4e800c4716f62076e00600b1172 (diff)
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";
};