Proton Mail

This commit is contained in:
KnightArtorias 2026-03-06 04:42:30 +00:00
parent a519074885
commit 35de350ed0
2 changed files with 12 additions and 12 deletions

View file

@ -1,18 +1,14 @@
{ pkgs, config, ... }: { pkgs, config, vars, ... }:
{ {
home.packages = with pkgs; [ home.packages = [
lens (pkgs.writeShellScriptBin "lens" ''
kubectl ${pkgs.lens}/bin/lens --user-data-dir=$HOME/.lens-data "$@"
kompose '')
];
home.file = { pkgs.kubectl
".config/Lens/config.json".text = builtins.toJSON { pkgs.kompose
updateChannel = "stable"; ];
allowUntrustedCAs = true;
};
};
home.sessionVariables = { home.sessionVariables = {
KUBECONFIG = "$HOME/.kube/config"; KUBECONFIG = "$HOME/.kube/config";

View file

@ -15,4 +15,8 @@
init.defaultBranch = "main"; init.defaultBranch = "main";
}; };
}; };
home.packages = with pkgs; [
protonmail-desktop
];
} }