From aa0253321eebaa4947c0a119672fc56d9c8f43a6 Mon Sep 17 00:00:00 2001 From: isabel Date: Thu, 6 Mar 2025 21:46:22 +0000 Subject: [PATCH] feat: add new neovimMinimal derivation --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 4174604..65f72eb 100644 --- a/flake.nix +++ b/flake.nix @@ -36,6 +36,10 @@ neovim = pkgs.callPackage ./nix/neovim.nix { }; default = self.packages.${pkgs.stdenv.hostPlatform.system}.neovim; + neovimMinimal = self.packages.${pkgs.stdenv.hostPlatform.system}.neovim.override { + includePerLanguageTooling = false; + }; + # expose the wrapper for public consumption wrapper = pkgs.callPackage ./nix/wrapper/package.nix { };