wrapper: optionally wrap neovim with extra lua packages

This commit is contained in:
Frothy 2024-02-17 17:03:47 -05:00
commit 35143b7dda
2 changed files with 12 additions and 0 deletions

View file

@ -209,6 +209,14 @@ in {
}'';
};
luaPackages = mkOption {
type = types.listOf types.str;
default = [];
description = ''
List of lua packages to install.
'';
};
globals = mkOption {
default = {};
description = "Set containing global variable values";