From af48ecac167b64f162e034467048744f1a2b0303 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sun, 21 Jan 2024 20:48:31 +0100 Subject: fix(hm/conf/less): Ensure that less can read the lesskey file --- hm/soispha/conf/less/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hm/soispha/conf/less/default.nix') diff --git a/hm/soispha/conf/less/default.nix b/hm/soispha/conf/less/default.nix index 1d598995..f4103080 100644 --- a/hm/soispha/conf/less/default.nix +++ b/hm/soispha/conf/less/default.nix @@ -2,16 +2,16 @@ home.sessionVariables = { PAGER = "less"; MANPAGER = "less --color=d+r --color=u+b"; + + # These are added here because adding them in the lesskey file somehow doesn't work. + LESSHISTSIZE = 10000; + LESSHISTFILE = "${config.xdg.dataHome}/less/history"; }; programs.less = { enable = true; keys = builtins.readFile ./command.less + builtins.readFile ./line-edit.less - + builtins.readFile ./env.less - # This next line *must* be under the `./env.less` include, as it extends the environment definitions - + '' - LESSHISTFILE = ${config.xdg.dataHome}/less/history - ''; + + builtins.readFile ./env.less; }; } -- cgit 1.4.1