{ pkgs, config, ... }: { home.packages = with pkgs; [ lens kubectl kompose ]; home.file = { ".config/Lens/config.json".text = builtins.toJSON { updateChannel = "stable"; allowUntrustedCAs = true; }; }; home.sessionVariables = { KUBECONFIG = "$HOME/.kube/config"; }; }