modules/output: fix extraLuaPackages

This commit is contained in:
Stanislav Asunkin 2024-07-06 18:36:00 +03:00 committed by GaetanLepage
parent 843fb302eb
commit 6674dea840
2 changed files with 8 additions and 0 deletions

View file

@ -85,6 +85,7 @@ with lib;
{
inherit (config)
extraPython3Packages
extraLuaPackages
viAlias
vimAlias
withRuby

View file

@ -0,0 +1,7 @@
{
extraLuaPackages = {
extraLuaPackages = ps: [ ps.jsregexp ];
# Make sure jsregexp is in LUA_PATH
extraConfigLua = ''require("jsregexp")'';
};
}