diff options
author | Ben Sima <ben@bsima.me> | 2021-04-06 08:27:53 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-04-06 08:27:53 -0400 |
commit | 28c1d94beb3cb2ce451ed31e96cc346daf9bb89c (patch) | |
tree | 9018eb951b23a2e1d35afe9379801299219acc7a | |
parent | ce21c1cf0fadd403f63969590da0ca7df0c518b1 (diff) |
Fix bat PAGER
-rw-r--r-- | lib/common.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.nix b/lib/common.nix index 1b850fe..0292ed0 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -15,7 +15,7 @@ in LC_ALL = locale; LANGUAGE = locale; PATH = "${homedir}/bin:${homedir}/.local/bin:$PATH"; - PAGER = "${pkgs.bat}/bin/bat --theme=ansi-$(cat ~/.local/share/xtheme)"; + PAGER = "bat --theme=ansi-$(cat ~/.local/share/xtheme)"; LEDGER_FILE = "${homedir}/.hledger.journal"; XTERM_LOCALE = locale; PYTHONSTARTUP = "${homedir}/.pythonrc"; |