diff options
Diffstat (limited to 'users/grfn/system/home/modules/development/readyset.nix')
-rw-r--r-- | users/grfn/system/home/modules/development/readyset.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/users/grfn/system/home/modules/development/readyset.nix b/users/grfn/system/home/modules/development/readyset.nix new file mode 100644 index 000000000000..7b1b8368375d --- /dev/null +++ b/users/grfn/system/home/modules/development/readyset.nix @@ -0,0 +1,31 @@ +{ 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"; + }; +} |