nixos/home-manager/roles/lens/default.nix

21 lines
319 B
Nix
Raw Normal View History

2026-03-06 04:20:12 +00:00
{ pkgs, config, ... }:
2026-03-06 04:06:08 +00:00
{
2026-03-06 04:20:12 +00:00
home.packages = with pkgs; [
2026-03-06 04:06:08 +00:00
lens
2026-03-06 04:20:12 +00:00
kubectl
kompose
2026-03-06 04:06:08 +00:00
];
2026-03-06 04:20:12 +00:00
home.file = {
".config/Lens/config.json".text = builtins.toJSON {
updateChannel = "stable";
allowUntrustedCAs = true;
};
2026-03-06 04:06:08 +00:00
};
2026-03-06 04:20:12 +00:00
home.sessionVariables = {
KUBECONFIG = "$HOME/.kube/config";
};
2026-03-06 04:06:08 +00:00
}