* //users/grfn/system/home: build rain with Go 1.17, as it fails to build with Go 1.18 which introduces new compile-time errors * //3p/nixpkgs: pick ntfy from stable channel as it does not build on unstable * //users/sterni/emacs: make sure use-package is available before org-tracker can be loaded dynamically from $HOME/src. Interestingly this only became a problem with this channel bump. Change-Id: Id7d23b66bc3ba0202a01b4f8d670854e1f31175e Reviewed-on: https://cl.tvl.fyi/c/depot/+/5988 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: grfn <grfn@gws.fyi> Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: sterni <sternenseemann@systemli.org>
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			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 -")
 | 
						|
 | 
						|
    # TODO(grfn): rain fails to build with Go >=1.18, investigate.
 | 
						|
    (buildGo117Module rec {
 | 
						|
      pname = "rain";
 | 
						|
      version = "1.2.0";
 | 
						|
 | 
						|
      src = fetchFromGitHub {
 | 
						|
        owner = "aws-cloudformation";
 | 
						|
        repo = pname;
 | 
						|
        rev = "v${version}";
 | 
						|
        sha256 = "168gkchshl5f1awqi1cgvdkm6q707702rnn0v4i5djqxmg5rk0p9";
 | 
						|
      };
 | 
						|
 | 
						|
      vendorSha256 = "16bx7cjh5cq9zlis8lf28i016avgqf3j9fmcvkqzd8db2vxpqx3v";
 | 
						|
    })
 | 
						|
 | 
						|
    awscli2
 | 
						|
    amazon-ecr-credential-helper
 | 
						|
  ];
 | 
						|
 | 
						|
  programs.zsh.shellAliases = {
 | 
						|
    "tf" = "terraform";
 | 
						|
  };
 | 
						|
 | 
						|
  home.file.".docker/config.json".text = builtins.toJSON {
 | 
						|
    credHelpers = {
 | 
						|
      "305232526136.dkr.ecr.us-east-2.amazonaws.com" = "ecr-login";
 | 
						|
      "public.ecr.aws" = "ecr-login";
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  programs.zsh.functions."purge_deployment" = ''
 | 
						|
    for key in $(http :8500/v1/kv/$1 keys==true | jq -r .'[]'); do http DELETE ":8500/v1/kv/$key"; done
 | 
						|
  '';
 | 
						|
}
 |