feat: add helm plugins declaratively

This commit is contained in:
2026-03-11 21:25:32 +01:00
parent ff667438a0
commit fa369973b7
2 changed files with 19 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
(wrapHelm kubernetes-helm {
plugins = with kubernetes-helmPlugins; [
helm-diff
helm-git
helm-schema
helm-secrets
helm-unittest
];
})
];
}