plank/shell.nix
2026-04-05 21:17:37 +02:00

11 lines
166 B
Nix

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