nixos-config/hosts/d2nix-archives/home-manager/himalaya.nix

26 lines
616 B
Nix

{
programs.himalaya = {
enable = true;
};
accounts.email.accounts = {
zimbra = {
primary = true;
himalaya.enable = true;
address = "alexandre.lucazeau@free.fr";
realName = "Alexandre LUCAZEAU";
userName = "alexandre.lucazeau";
passwordCommand = "keepassxc-cli show -a Password --no-password -k $HOME/keyx/emails.key $HOME/keys/emails.kbx zimbra";
imap = {
host = "imap.free.fr";
port = 993;
tls.enable = true;
};
smtp = {
host = "smtp.free.fr";
port = 587;
tls.enable = false;
};
};
};
}