nixos-config/shells/lua.nix
2022-09-26 08:35:10 +08:00

13 lines
273 B
Nix

# 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
];
}