Added new format

This commit is contained in:
fwastring 2025-09-11 22:35:24 +02:00
parent 6dc7c73245
commit 8b27ea2578

View file

@ -0,0 +1,32 @@
{
lib,
config,
pkgs,
...
}:
{
options = {
kubernetes-tools.enable = lib.mkEnableOption "enables kubernetes-tools";
};
config = lib.mkIf config.kubernetes-tools.enable {
environment.systemPackages = with pkgs; [
kubectl
buildkit
argocd
containerd
cri-tools
kubectx
(wrapHelm kubernetes-helm {
plugins = with pkgs.kubernetes-helmPlugins; [
helm-secrets
helm-diff
helm-s3
helm-git
];
})
k3sup
];
};
}