blob: 05752bfe720ac8897b120013a4090890544d5a70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ config, lib, pkgs, ... }:
{
imports = [
./rust.nix
];
home.packages = with pkgs; [
# These go in $PATH so I can run it from rofi and parent to my WM
(writeShellScriptBin "dotclip" "xclip -out -selection clipboard | dot -Tpng | feh -")
(writeShellScriptBin "dotcontroller" "curl -s localhost:6033/graph | dot -Tpng | feh -")
rain
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
'';
}
|