flake-template-hell/templates/rust/nix/shell.nix

5 lines
165 B
Nix

{ mkShell, rustc, cargo, nixfmt, deadnix, statix, rustfmt, clippy }:
mkShell {
name = "rust";
packages = [ nixfmt deadnix statix rustfmt clippy rustc cargo ];
}