This commit is contained in:
2025-03-27 13:42:27 -04:00
parent e354c4e194
commit 4e82b684e5
17 changed files with 239 additions and 218 deletions

View File

@@ -0,0 +1,19 @@
{ lib, pkgs, config, namespace, ... }:
let
inherit (lib) mkIf;
cfg = config.${namespace}.programs.k9s;
in
{
options.${namespace}.programs.k9s = {
enable = lib.mkEnableOption "k9s";
};
config = mkIf cfg.enable {
programs.k9s.enable = true;
home.packages = with pkgs; [
kubectl
kubernetes-helm
];
};
}