From 4e5f1a4a3a7e2ba360f7efeb58c0d77f06c48385 Mon Sep 17 00:00:00 2001 From: unexplrd Date: Mon, 7 Apr 2025 13:06:45 +0300 Subject: [PATCH] modules/home/programs/shell/fish.nix: add batman for paging Signed-off-by: unexplrd --- modules/home/programs/shell/fish.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/home/programs/shell/fish.nix b/modules/home/programs/shell/fish.nix index 71ef765..4fa2f55 100644 --- a/modules/home/programs/shell/fish.nix +++ b/modules/home/programs/shell/fish.nix @@ -1,9 +1,10 @@ { config, + pkgs, lib, ... -}: -with lib; let +}: let + inherit (lib) mkIf mkEnableOption getExe; cfg = config.shell.fish; in { options = { @@ -52,6 +53,7 @@ in { set fish_greeting set fish_cursor_default block blink set EDITOR hx + ${getExe pkgs.bat-extras.batman} --export-env | source ''; }; };