diff options
Diffstat (limited to 'users/grfn/system')
-rw-r--r-- | users/grfn/system/home/machines/yeren.nix | 2 | ||||
-rw-r--r-- | users/grfn/system/home/modules/development/readyset.nix | 15 |
2 files changed, 15 insertions, 2 deletions
diff --git a/users/grfn/system/home/machines/yeren.nix b/users/grfn/system/home/machines/yeren.nix index 6ced4e690d14..7f5b610f9b0f 100644 --- a/users/grfn/system/home/machines/yeren.nix +++ b/users/grfn/system/home/machines/yeren.nix @@ -41,8 +41,6 @@ in }) steam - - awscli2 ]; systemd.user.services.laptop-keyboard = { diff --git a/users/grfn/system/home/modules/development/readyset.nix b/users/grfn/system/home/modules/development/readyset.nix index 19f44b770355..7b1b8368375d 100644 --- a/users/grfn/system/home/modules/development/readyset.nix +++ b/users/grfn/system/home/modules/development/readyset.nix @@ -8,6 +8,21 @@ 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 = { |