2021-05-25 12:35:35 +02:00
|
|
|
{ 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 -")
|
2022-04-06 16:23:10 +02:00
|
|
|
(buildGoModule 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
|
2021-05-25 12:35:35 +02:00
|
|
|
];
|
2021-08-24 15:53:25 +02:00
|
|
|
|
|
|
|
programs.zsh.shellAliases = {
|
|
|
|
"tf" = "terraform";
|
|
|
|
};
|
2022-05-31 21:34:33 +02:00
|
|
|
|
|
|
|
home.file.".docker/config.json".text = builtins.toJSON {
|
|
|
|
credHelpers = {
|
|
|
|
"305232526136.dkr.ecr.us-east-2.amazonaws.com" = "ecr-login";
|
|
|
|
"public.ecr.aws" = "ecr-login";
|
|
|
|
};
|
|
|
|
};
|
2021-05-25 12:35:35 +02:00
|
|
|
}
|