From b9efb0dc3a559b861fc7b232990b0ee3bcc6ac35 Mon Sep 17 00:00:00 2001 From: Steve Walker <65963536+stevalkr@users.noreply.github.com> Date: Mon, 1 Sep 2025 09:58:42 +0800 Subject: [PATCH] fzf: fix fish integration in nixos/modules/programs/fzf.nix --- nixos/modules/programs/fzf.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/programs/fzf.nix b/nixos/modules/programs/fzf.nix index d4a7f62d45fd..20e9c9910917 100644 --- a/nixos/modules/programs/fzf.nix +++ b/nixos/modules/programs/fzf.nix @@ -44,7 +44,7 @@ in }; fish.interactiveShellInit = lib.optionalString cfg.keybindings '' - source ${pkgs.fzf}/share/fzf/key-bindings.fish + source ${pkgs.fzf}/share/fzf/key-bindings.fish && fzf_key_bindings ''; }; };