11 lines
180 B
Nix
11 lines
180 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
rustc cargo rust-analyzer rustfmt
|
||
|
|
||
|
# keep this line if you use bash
|
||
|
bashInteractive
|
||
|
];
|
||
|
}
|