Proton Mail
This commit is contained in:
parent
a519074885
commit
35de350ed0
2 changed files with 12 additions and 12 deletions
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -15,4 +15,8 @@
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
protonmail-desktop
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue