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; [
lens
kubectl
kompose
];
home.packages = [
(pkgs.writeShellScriptBin "lens" ''
${pkgs.lens}/bin/lens --user-data-dir=$HOME/.lens-data "$@"
'')
home.file = {
".config/Lens/config.json".text = builtins.toJSON {
updateChannel = "stable";
allowUntrustedCAs = true;
};
};
pkgs.kubectl
pkgs.kompose
];
home.sessionVariables = {
KUBECONFIG = "$HOME/.kube/config";

View file

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