nixfiles/shells/nix.nix

9 lines
175 B
Nix

{pkgs, ...}:
with pkgs;
mkShell {
nativeBuildInputs = [
deadnix # dead-code scanner
alejandra # code formatter
statix # anti-pattern finder
];
}