nix-config/flake-modules/dev-shell.nix
Oliver Davies 26072b5cff
All checks were successful
/ check (push) Successful in 1m28s
Extract flake modules
2025-07-09 02:35:21 +01:00

14 lines
236 B
Nix

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