13 lines
176 B
Nix
13 lines
176 B
Nix
{ pkgs, config, vars, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
lens
|
|
kubectl
|
|
kompose
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
KUBECONFIG = "$HOME/.kube/config";
|
|
};
|
|
}
|