summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2024-10-29 20:05:58 +0100
committerMinijackson <minijackson@riseup.net>2024-10-29 20:06:18 +0100
commitde09f0d8b25eadf8c1ac04ae728d50ac4cf451b1 (patch)
tree659ab1d5698dea53150d27e79d7a71cd8f044c0f
parentaac88dba776dd6d4d5ef6f12c3070e4f75897f7d (diff)
downloadnixos-config-reborn-de09f0d8b25eadf8c1ac04ae728d50ac4cf451b1.tar.gz
nixos-config-reborn-de09f0d8b25eadf8c1ac04ae728d50ac4cf451b1.zip
common/commandline: fix "less" env var
-rw-r--r--common/commandline.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/commandline.nix b/common/commandline.nix
index cc96ad1..6025aaa 100644
--- a/common/commandline.nix
+++ b/common/commandline.nix
@@ -94,8 +94,7 @@ in {
94 LESS = "-W -z-4 -R -J -F"; 94 LESS = "-W -z-4 -R -J -F";
95 LESS_TERMCAP_mb = dominantEscapeCode; 95 LESS_TERMCAP_mb = dominantEscapeCode;
96 LESS_TERMCAP_md = dominantEscapeCode; 96 LESS_TERMCAP_md = dominantEscapeCode;
97 LESS_TERMCAP_so = 97 LESS_TERMCAP_so = bgDominantEscapeCode + backgroundEscapeCode;
98 bgDominantEscapeCode + backgroundEscapeCode + "$(tput bold)";
99 }; 98 };
100 }; 99 };
101 100