mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-01 07:03:08 +02:00
24 lines
243 B
Nix
24 lines
243 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# general tools
|
|
pulumi
|
|
pulumictl
|
|
# istioctl
|
|
|
|
# aws
|
|
awscli2
|
|
aws-iam-authenticator
|
|
eksctl
|
|
istioctl
|
|
|
|
# aliyun
|
|
aliyun-cli
|
|
];
|
|
|
|
programs = {
|
|
};
|
|
}
|