maj/shell.nix

8 lines
124 B
Nix
Raw Normal View History

2020-07-24 02:25:35 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo rls rustfmt cargo-watch
];
}