Change-Id: Ic79fec6b19c185a6e094dfc9571ea783a1e07148 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3423 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, pkgs, ... }:
 | |
| 
 | |
| {
 | |
|   imports = [
 | |
|     ./rust.nix
 | |
|   ];
 | |
| 
 | |
|   home.packages = with pkgs; [
 | |
|     # This goes in $PATH so I can run it from rofi and parent to my WM
 | |
|     (writeShellScriptBin "dotclip" "xclip -out -selection clipboard | dot -Tpng | feh -")
 | |
|   ];
 | |
| 
 | |
|   programs.zsh.shellAliases = {
 | |
|     "tf" = "terraform";
 | |
|   };
 | |
| }
 |