feat(lin-va-terminal): add sops secret for rke2 kubeconfig

This commit is contained in:
2026-05-02 17:04:52 -04:00
parent 7c1519881a
commit 3cc4649979

View File

@@ -1,6 +1,7 @@
{ lib { lib
, config , config
, namespace , namespace
, osConfig
, ... , ...
}: }:
let let
@@ -37,4 +38,11 @@ in
}; };
}; };
}; };
# Kubernetes Secrets
sops.secrets = lib.mkIf osConfig.${namespace}.security.sops.enable {
rke2_kubeconfig = {
path = "${config.home.homeDirectory}/.kube/lin-va-kube";
};
};
} }