From 5d48d7a75169dbe80679dcabf1a6c8b0a4136300 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Fri, 19 Jul 2024 05:04:54 +0900 Subject: [PATCH] Install prerequisites --- modules/home-manager/neovim/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/home-manager/neovim/default.nix b/modules/home-manager/neovim/default.nix index 008125a..cf323b7 100644 --- a/modules/home-manager/neovim/default.nix +++ b/modules/home-manager/neovim/default.nix @@ -11,4 +11,10 @@ recursive = true; source = ./config; }; + + home.packages = with pkgs; [ + ripgrep + fd + libgccjit + ]; }