Add basic rust nix dev shell

This commit is contained in:
joachimschmidt557 2022-05-18 19:01:33 +02:00
parent f094f30091
commit e63a13e10f
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

7
nix/rusty.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
];
}