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 ''; }; };