11 lines
163 B
Nix
11 lines
163 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
deadnix
|
|
statix
|
|
treefmt
|
|
nixfmt-rfc-style
|
|
];
|
|
}
|