dotfiles/users/josh/nix_modules/rust-repl.nix
RingOfStorms (Josh) c68285e4d7 add rustc for repl
2024-06-27 12:24:18 -05:00

7 lines
134 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ evcxr rustc ];
environment.shellAliases = {
rust = "evcxr";
};
}