nix/modules/devshells.nix
Hari d482eb01e4
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions
feat" diffkit self host" (#72)
2026-04-14 12:44:16 -04:00

23 lines
365 B
Nix

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