dotfiles/dev-shells/basic-rust.nix
2024-04-21 13:15:23 +02:00

7 lines
73 B
Nix

{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
];
}