about summary refs log tree commit diff
path: root/users/glittershark/system/home/modules/development/rust.nix
blob: 29eda82dc18856988234561737b990ee5a23e51d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, pkgs, ... }:


{
  home.packages = with pkgs; [
    rustup
    rust-analyzer
    cargo-edit
  ];

  programs.zsh.shellAliases = {
    "cg" = "cargo";
    "cb" = "cargo build";
    "ct" = "cargo test";
  };
}