mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
13 lines
273 B
Nix
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
|
|
];
|
|
}
|