mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 23:44:16 +01:00
23 lines
309 B
Nix
23 lines
309 B
Nix
{
|
|
pkgs,
|
|
pkgs-unstable,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# general tools
|
|
terraform
|
|
# terraformer # generate terraform configs from existing cloud resources
|
|
pulumi
|
|
pulumictl
|
|
# istioctl
|
|
|
|
# aws
|
|
awscli2
|
|
aws-iam-authenticator
|
|
eksctl
|
|
];
|
|
|
|
programs = {
|
|
};
|
|
}
|