devshell/shells/rust.nix

8 lines
189 B
Nix
Raw Normal View History

2023-12-08 15:22:58 +05:30
{ pkgs }: pkgs.mkShell {
packages = with pkgs; [ cargo rustc rustfmt rust-analyzer ];
shellHook = ''
export CARGO_HOME=$PWD/.nix/cargo
export PATH=$CARGO_HOME/bin:$PATH
'';
}