dotfiles/nix/basic-rust.nix
2023-01-19 18:56:19 +01:00

7 lines
73 B
Nix

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