nix-config/modules2/dev-shell.nix
Oliver Davies 59403e4660
All checks were successful
/ check (push) Successful in 1m28s
Move flake-modules to modules2
Move flake-modules to modules2 so they are automatically imported by
import-tree.
2025-07-23 12:38:52 +01:00

14 lines
236 B
Nix

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