Add lightweight package

This commit is contained in:
2026-01-05 22:56:55 -05:00
parent bdaf004472
commit f5ffc18de3
2 changed files with 17 additions and 6 deletions

View File

@@ -35,6 +35,15 @@
module = nixvimModule;
extraSpecialArgs = {
inherit inputs;
light = false;
};
};
nvim-light = nixvim.legacyPackages.${system}.makeNixvimWithModule {
module = nixvimModule;
extraSpecialArgs = {
inherit inputs;
light = true;
};
};
in
@@ -45,6 +54,8 @@
packages.default = nvim;
packages.light = nvim-light;
packages.neovide = pkgs.stdenv.mkDerivation {
name = "neovide";