This commit is contained in:
KnightArtorias 2026-03-06 04:20:12 +00:00
parent a62ea68035
commit a519074885
3 changed files with 12 additions and 20 deletions

View file

@ -1,19 +1,20 @@
{ pkgs, ... }: { pkgs, config, ... }:
{ {
home.pkgs = [ home.packages = with pkgs; [
lens lens
kubectl
kompose
]; ];
home.file."${pkgs.lens}" = { home.file = {
text = '' ".config/Lens/config.json".text = builtins.toJSON {
[Dekstop Entry] updateChannel = "stable";
Name=Lens allowUntrustedCAs = true;
Exec=${pkgs.lens}/bin/lens };
Type=Application
Categories=Development;
'';
}; };
environment.variables.KUBECONFIG = "${config.home.homeDirectory}/.kube/config"; home.sessionVariables = {
KUBECONFIG = "$HOME/.kube/config";
};
} }

View file

@ -12,8 +12,6 @@
../../../nixos/roles/physical/desktop/common ../../../nixos/roles/physical/desktop/common
../../../nixos/roles/physical/desktop/niri ../../../nixos/roles/physical/desktop/niri
../../../nixos/modules/kubectl.nix
]; ];
home-manager = { home-manager = {

View file

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