dotfiles/components/nix/rust-repl.nix
RingOfStorms (Joshua Bell) eaa2e08f5d user specifics
2024-12-29 01:21:06 -06:00

7 lines
134 B
Nix

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