packaging stuff up

This commit is contained in:
Noah Masur
2025-01-30 14:48:17 -05:00
parent 0ebd0bac2c
commit b123ae3e69
19 changed files with 135 additions and 89 deletions

View File

@ -0,0 +1,12 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "aws-ec2";
runtimeInputs = [
pkgs.awscli2
pkgs.jq
pkgs.fzf
pkgs.ssm-session-manager-plugin
];
text = builtins.readFile ./aws-ec2.sh;
}