Stub lens

This commit is contained in:
KnightArtorias 2026-03-06 04:06:08 +00:00
parent ba783cf2ef
commit a62ea68035
3 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,19 @@
{ 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";
}

View file

@ -21,6 +21,7 @@
../../../home-manager/common
../../../home-manager/roles/personal
../../../home-manager/roles/desktop/niri
../../../home-manager/roles/lens
];
};

View file

@ -1,7 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackage = with pkgs; [
environment.systemPackages = with pkgs; [
kubectl
];
}