20 lines
319 B
Nix
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";
|
|
};
|
|
}
|