19 lines
316 B
Nix
19 lines
316 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.pkgs = [
|
|
lens
|
|
];
|
|
|
|
home.file."${pkgs.lens}" = {
|
|
text = ''
|
|
[Dekstop Entry]
|
|
Name=Lens
|
|
Exec=${pkgs.lens}/bin/lens
|
|
Type=Application
|
|
Categories=Development;
|
|
'';
|
|
};
|
|
|
|
environment.variables.KUBECONFIG = "${config.home.homeDirectory}/.kube/config";
|
|
}
|