nix-config/modules2/meta/dev-shell.nix
2025-08-05 00:12:56 +01:00

14 lines
236 B
Nix

{
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
just
lua-language-server
lua54Packages.luacheck
nixd
];
};
};
}