diff --git a/hosts/x201/nixpkgs/himalaya.nix b/hosts/x201/nixpkgs/himalaya.nix new file mode 100644 index 0000000..8114e92 --- /dev/null +++ b/hosts/x201/nixpkgs/himalaya.nix @@ -0,0 +1,25 @@ +{ + 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; + }; + }; + }; +}