nixfiles/home/profiles/devops/packages.nix

26 lines
507 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{pkgs, ...}: {
home.packages = with pkgs; [
# IAC
terraform # iac tool
# Kubernetes
kubectl # kubectl
k9s # cute k8s client, canines~
kubernetes-helm # k8s package manager
kustomize # config management and patching, ...
# AWS
awscli2 # awscli v2
# Nix
deadnix # nix dead-code scanner
alejandra # nix code formatter
statix # nix anti-pattern finder
rnix-lsp # vscode nix extensions
deploy-rs.deploy-rs # deployment system
];
}