{ config, lib, pkgs, globalInputs, system, ... }: with lib; let cfg = config.home.roles.kubectl; in { options.home.roles.kubectl = { enable = mkEnableOption "Enable management tools for the homelab k3s oglenet cluster"; }; config = mkIf cfg.enable { programs.kubectl-secure.enable = true; }; }