mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-21 08:59:28 +01:00
25 lines
412 B
Nix
25 lines
412 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# general tools
|
|
pulumi
|
|
pulumictl
|
|
# istioctl
|
|
|
|
# aws
|
|
awscli2
|
|
aws-iam-authenticator
|
|
eksctl
|
|
istioctl
|
|
|
|
# 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 []);
|
|
}
|