nixos/home-manager/roles/lens/default.nix
KnightArtorias a519074885 Lens
2026-03-06 04:20:12 +00:00

20 lines
319 B
Nix

{ 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";
};
}