9 lines
143 B
Nix
9 lines
143 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
cargo
|
|
helix
|
|
rust-analyzer
|
|
cargo-watch
|
|
];
|
|
}
|