diff --git a/nixos/modules/programs/fzf.nix b/nixos/modules/programs/fzf.nix index b4d05efc8ba9..24fca7b33291 100644 --- a/nixos/modules/programs/fzf.nix +++ b/nixos/modules/programs/fzf.nix @@ -9,11 +9,11 @@ in { imports = [ (lib.mkRemovedOptionModule [ "programs" "fzf" "keybindings" ] '' - Use "programs.fzf.enabled" instead, due to fzf upstream-change it's not possible to load shell-completion and keybindings seperatly. + Use "programs.fzf.enabled" instead, due to fzf upstream-change it's not possible to load shell-completion and keybindings separately. If you want to change/disable certain keybindings please check the fzf-documentation. '') (lib.mkRemovedOptionModule [ "programs" "fzf" "fuzzyCompletion" ] '' - Use "programs.fzf.enabled" instead, due to fzf upstream-change it's not possible to load shell-completion and keybindings seperatly. + Use "programs.fzf.enabled" instead, due to fzf upstream-change it's not possible to load shell-completion and keybindings separately. If you want to change/disable certain keybindings please check the fzf-documentation. '') ]; @@ -30,7 +30,7 @@ in ''; programs.fish.interactiveShellInit = '' - eval "$(${getExe pkgs.fzf} --fish)" + ${getExe pkgs.fzf} --fish | source ''; programs.zsh = {