Change-Id: If32e485f7ee8f4ae1e4b68be33aa1261c5cf2dbd Reviewed-on: https://cl.tvl.fyi/c/depot/+/3290 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			472 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			472 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
 | 
						|
{
 | 
						|
  home.packages = with pkgs; [
 | 
						|
    rustup
 | 
						|
    rust-analyzer
 | 
						|
    cargo-edit
 | 
						|
    cargo-expand
 | 
						|
    cargo-flamegraph
 | 
						|
    cargo-rr
 | 
						|
    sccache
 | 
						|
    evcxr
 | 
						|
  ];
 | 
						|
 | 
						|
  programs.zsh.shellAliases = {
 | 
						|
    "cg" = "cargo";
 | 
						|
    "cb" = "cargo build";
 | 
						|
    "ct" = "cargo test";
 | 
						|
    "ctw" = "fd -e rs | entr cargo test";
 | 
						|
    "cch" = "cargo check";
 | 
						|
  };
 | 
						|
 | 
						|
  home.file.".cargo/config".text = ''
 | 
						|
    [build]
 | 
						|
    rustc-wrapper = "${pkgs.sccache}/bin/sccache"
 | 
						|
  '';
 | 
						|
}
 |