Files
nix-config/home/base/desktop/cloud/default.nix
2024-01-22 14:32:05 +08:00

28 lines
547 B
Nix

{pkgs, ...}: {
home.packages = with pkgs;
[
# general tools
pulumi
pulumictl
packer # machine image builder
# aws
awscli2
ssm-session-manager-plugin # Amazon SSM Session Manager Plugin
aws-iam-authenticator
eksctl
# aliyun
aliyun-cli
]
++ (
if pkgs.stdenv.isLinux
then [
# cloud tools that nix do not have cache for.
terraform
terraformer # generate terraform configs from existing cloud resources
]
else []
);
}