mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 22:30:25 +01:00
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# https://developer.hashicorp.com/terraform/cli/config/config-file
|
|
home.file.".terraformrc".source = ./terraformrc;
|
|
|
|
home.packages = with pkgs; [
|
|
# infrastructure as code
|
|
# pulumi
|
|
# pulumictl
|
|
# tf2pulumi
|
|
# crd2pulumi
|
|
# pulumiPackages.pulumi-random
|
|
# pulumiPackages.pulumi-command
|
|
# pulumiPackages.pulumi-aws-native
|
|
# pulumiPackages.pulumi-language-go
|
|
# pulumiPackages.pulumi-language-python
|
|
# pulumiPackages.pulumi-language-nodejs
|
|
|
|
# aws
|
|
awscli2
|
|
ssm-session-manager-plugin # Amazon SSM Session Manager Plugin
|
|
aws-iam-authenticator
|
|
eksctl
|
|
|
|
# aliyun
|
|
aliyun-cli
|
|
# digitalocean
|
|
doctl
|
|
# google cloud
|
|
(google-cloud-sdk.withExtraComponents (
|
|
with google-cloud-sdk.components;
|
|
[
|
|
gke-gcloud-auth-plugin
|
|
]
|
|
))
|
|
|
|
# cloud tools that nix do not have cache for.
|
|
terraform
|
|
terraformer # generate terraform configs from existing cloud resources
|
|
packer # machine image builder
|
|
];
|
|
}
|