7 lines
134 B
Nix
7 lines
134 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [ evcxr rustc ];
|
|
environment.shellAliases = {
|
|
rust = "evcxr";
|
|
};
|
|
}
|