diff --git a/home/common/zsh.nix b/home/common/zsh.nix index 076d185..d2dc933 100644 --- a/home/common/zsh.nix +++ b/home/common/zsh.nix @@ -10,6 +10,11 @@ enableZshIntegration = true; }; + programs.fzf = { + enable = true; + enableZshIntegration = true; + }; + programs.zsh = { autocd = true; enableCompletion = true; @@ -63,11 +68,6 @@ }; file = "pure.plugin.zsh"; } - { - name = "fzf"; - src = pkgs.fzf-zsh; - file = "share/zsh/plugins/fzf-zsh/fzf-zsh.plugin.zsh"; - } { name = "zsh-sudo"; src = pkgs.oh-my-zsh;