nix-config/modules2/dev-shell.nix

15 lines
236 B
Nix
Raw Normal View History

2025-07-09 02:12:31 +01:00
{
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
just
lua-language-server
lua54Packages.luacheck
nixd
];
};
};
}