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; [
|
||||
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";
|
||||
|
|
|
|||
|
|
@ -15,4 +15,8 @@
|
|||
init.defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
protonmail-desktop
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue