From 8a6a18732aecb94b6a2f49061b30ff8174011c50 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 3 Mar 2022 18:39:45 +0100 Subject: [PATCH] home: bat: use 'gruvbox-dark' theme To match my `vim` configuration. --- home/bat/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/bat/default.nix b/home/bat/default.nix index 8485dd3..ac58c06 100644 --- a/home/bat/default.nix +++ b/home/bat/default.nix @@ -10,6 +10,8 @@ in config.programs.bat = lib.mkIf cfg.enable { enable = true; config = { + theme = "gruvbox-dark"; + pager = with config.home.sessionVariables; "${PAGER} ${LESS}"; }; };