diff options
author | Soispha <soispha@vhack.eu> | 2024-01-13 14:41:42 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-13 14:41:42 +0100 |
commit | 90c1c9fdceb01e9e48448be6f7405c5c3431630a (patch) | |
tree | bf454da518a85dc10ecff5fef65dc5d2a113bc65 | |
parent | build(treewide): Update shell library (diff) | |
download | nixos-config-90c1c9fdceb01e9e48448be6f7405c5c3431630a.tar.gz nixos-config-90c1c9fdceb01e9e48448be6f7405c5c3431630a.zip |
fix(hm/conf/less): Add arguments to MANPAGER back
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/less/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/less/default.nix b/hm/soispha/conf/less/default.nix index c9109dd8..75928bc8 100644 --- a/hm/soispha/conf/less/default.nix +++ b/hm/soispha/conf/less/default.nix @@ -1,7 +1,7 @@ {config, ...}: { home.sessionVariables = { PAGER = "less"; - MANPAGER = "less"; + MANPAGER = "less -Db+r -Du+b"; }; programs.less = { enable = true; |