18 lines
304 B
Nix
18 lines
304 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
terraform
|
|
sops ssh-to-age age
|
|
doctl
|
|
k3s
|
|
(wrapHelm kubernetes-helm {
|
|
plugins = with pkgs.kubernetes-helmPlugins; [
|
|
helm-diff
|
|
helm-secrets
|
|
helm-s3
|
|
helm-git
|
|
];
|
|
})
|
|
helmfile-wrapped
|
|
];
|
|
} |