From a6034ee47a1d8cda7d16c30466873a5f4e1bf205 Mon Sep 17 00:00:00 2001 From: aaron Date: Tue, 28 Apr 2026 19:19:04 +0200 Subject: [PATCH] fix(nixvim): telescope live grep needs ripgrep as dependency --- modules/home-manager/nixvim.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home-manager/nixvim.nix b/modules/home-manager/nixvim.nix index ae69448..b38649c 100644 --- a/modules/home-manager/nixvim.nix +++ b/modules/home-manager/nixvim.nix @@ -87,4 +87,9 @@ }; }; }; + + # install dependencies + home.packages = with pkgs; [ + ripgrep + ]; }