added email clients.
This commit is contained in:
parent
a3d350ea15
commit
e54ef2c4ce
4 changed files with 26 additions and 0 deletions
23
modules/home-manager/email.nix
Normal file
23
modules/home-manager/email.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
programs.himalaya.enable = true;
|
||||
|
||||
programs.aerc = {
|
||||
enable = true;
|
||||
extraConfig.general.unsafe-accounts-conf = true;
|
||||
};
|
||||
accounts.email.accounts.gmail = {
|
||||
address = "gabevenberg@gmail.com";
|
||||
primary = true;
|
||||
flavor = "gmail.com";
|
||||
passwordCommand = "cat ~/keys/plaintext/gmail";
|
||||
realName = "Gabe Venberg";
|
||||
|
||||
himalaya.enable = true;
|
||||
aerc.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue