nixos-config/shells/lua.nix

13 lines
273 B
Nix
Raw Normal View History

2022-09-25 07:25:27 +00:00
# It is much more recommended to create a project-specific development
# environment for Lua projects instead.
{ mkShell, lua, luarocks, stylua, sumneko-lua-language-server }:
mkShell {
packages = [
lua
luarocks
stylua
sumneko-lua-language-server
];
}