nix/modules/devshells.nix

23 lines
378 B
Nix

{ ... }:
{
perSystem =
{ pkgs, ... }:
{
formatter = pkgs.nixfmt-tree;
devShells.default = pkgs.mkShell {
packages = with pkgs; [
deadnix
git
just
nixfmt-tree
nodePackages.prettier
pre-commit
selene
shfmt
statix
stylua
];
};
};
}