All checks were successful
/ check (push) Successful in 1m28s
Move flake-modules to modules2 so they are automatically imported by import-tree.
14 lines
236 B
Nix
14 lines
236 B
Nix
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
just
|
|
lua-language-server
|
|
lua54Packages.luacheck
|
|
nixd
|
|
];
|
|
};
|
|
};
|
|
}
|