Files
nix-config/home/base/desktop/cloud/default.nix
2023-09-26 12:21:59 +08:00

26 lines
350 B
Nix

{
pkgs,
pkgs-unstable,
...
}: {
home.packages = with pkgs; [
# general tools
terraform
pkgs-unstable.terraformer # generate terraform configs from existing cloud resources
pulumi
pulumictl
# istioctl
# aws
awscli2
aws-iam-authenticator
eksctl
# aliyun
aliyun-cli
];
programs = {
};
}