bombai/shell.nix
2025-12-17 19:49:48 +01:00

12 lines
167 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rust-analyzer
cargo
rustc
clippy
rustfmt
cargo-watch
];
}