8851075c27
Resuscitate the configuration for roswell, the semi-portable configuration I use for ec2 development boxes. Lots of the changes here are trying to get Tramp working. Change-Id: I2dc2fd1d9aa76e145fa3f3f847af761cb652ab47 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5798 Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
38 lines
929 B
Nix
38 lines
929 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 -")
|
|
(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
|
|
];
|
|
|
|
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";
|
|
};
|
|
};
|
|
}
|