diff options
Diffstat (limited to 'users/glittershark/system/home/modules/development/rust.nix')
-rw-r--r-- | users/glittershark/system/home/modules/development/rust.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/users/glittershark/system/home/modules/development/rust.nix b/users/glittershark/system/home/modules/development/rust.nix index 17bda9c746dc..29eda82dc188 100644 --- a/users/glittershark/system/home/modules/development/rust.nix +++ b/users/glittershark/system/home/modules/development/rust.nix @@ -1,8 +1,16 @@ { config, lib, pkgs, ... }: + { home.packages = with pkgs; [ rustup rust-analyzer + cargo-edit ]; + + programs.zsh.shellAliases = { + "cg" = "cargo"; + "cb" = "cargo build"; + "ct" = "cargo test"; + }; } |