From 28f0150cd117c6beb37e036e63f94a03bfb443e2 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 24 May 2023 20:47:02 +0300 Subject: [PATCH] Fix environment variables for bat --- machines/asus/bat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/asus/bat/default.nix b/machines/asus/bat/default.nix index e9ca400..2406633 100644 --- a/machines/asus/bat/default.nix +++ b/machines/asus/bat/default.nix @@ -6,7 +6,7 @@ (homeConfiguration "nixos" { programs.nushell.environmentVariables = { - PAGER = "bat --plain"; - MANPAGER = "sh -c 'col --spaces --no-backspaces | bat --plain --language man'"; + PAGER = "\"bat --plain\""; + MANPAGER = "\"sh -c 'col --spaces --no-backspaces | bat --plain --language man'\""; }; })