{ lib, config, pkgs, ... }: let isEnabled = config.azos.kubectl.enable; in { options.azos.kubectl.enable = lib.mkOption { default = true; example = true; type = lib.types.bool; }; config = lib.mkIf isEnabled { home.packages = with pkgs; [ kubectl kubernetes-helm velero ]; }; }