add mail config

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-11 10:10:07 +01:00
parent e600a08103
commit 09e68a623e
5 changed files with 89 additions and 4 deletions

View file

@ -17,6 +17,6 @@
vdirsyncer.enable = true;
};
};
accounts.calendar.basePath = "Data/.calendar";
accounts.calendar.basePath = "Data/calendar";
sops.secrets."accounts/calendar/accounts/lotte/remote/password".sopsFile = ./secrets.yaml;
}

View file

@ -0,0 +1,22 @@
{ pkgs, config, ... }:
{
accounts.contact.accounts.lotte = {
khal = {
enable = true;
addresses = [ "lotte@chir.rs" ];
};
khard.enable = true;
remote = {
passwordCommand = [
"${pkgs.coreutils}/bin/cat"
config.sops.secrets."accounts/contact/accounts/lotte/remote/password".path
];
type = "carddav";
url = "https://contacts.zoho.eu/carddav/lotte@chir.rs/default/contacts";
userName = "lotte@chir.rs";
vdirsyncer.enable = true;
};
};
accounts.calendar.basePath = "Data/contacts";
sops.secrets."accounts/contact/accounts/lotte/remote/password".sopsFile = ./secrets.yaml;
}

View file

@ -1,4 +1,8 @@
{ ... }:
{
imports = [ ./calendar.nix ];
imports = [
./calendar.nix
./contacts.nix
./email.nix
];
}

View file

@ -0,0 +1,50 @@
{ pkgs, config, ... }:
{
accounts.email.accounts.lotte = {
address = "lotte@chir.rs";
imap.host = "imappro.zoho.eu";
imapnotify = {
enable = true;
onNotify = "${pkgs.isync}/bin/mbsync test-%s";
onNotifyPost.mail = "${pkgs.notmuch}/bin/notmuch new && ${pkgs.libnotify}/bin/notify-send 'New mail arrived'";
};
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
msmtp.enable = true;
notmuch = {
enable = true;
neomutt = {
enable = true;
virtualMailboxes = [
{
name = "Inbox";
query = "tag:inbox";
}
];
};
};
passwordCommand = [
"${pkgs.coreutils}/bin/cat"
config.sops.secrets."accounts/email/accounts/lotte/password".path
];
realName = "Charlotte 🦝 Delenk";
smtp.host = "smtppro.zoho.eu";
thunderbird.enable = true;
userName = "lotte@chir.rs";
primary = true;
};
accounts.email.maildirBasePath = "Data/Maildir";
sops.secrets."accounts/email/accounts/lotte/password".sopsFile = ./secrets.yaml;
services.imapnotify.enable = true;
programs.notmuch.enable = true;
programs.thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
withExternalGnupg = true;
};
};
}

View file

@ -4,6 +4,15 @@ accounts:
lotte:
remote:
password: ENC[AES256_GCM,data:Y+ITsQj6vFJ2Jgk8,iv:ZrdVVxh2L9pJKhLWaz3BE+IU0xasn4WQ1Jm0kpnWMLI=,tag:gTJsmCNqnKNbhBXJipijbA==,type:str]
contact:
accounts:
lotte:
remote:
password: ENC[AES256_GCM,data:Swzr3KZgLh5EMo1J,iv:QQl0mUbs9uCgFlv+GgOFxAJ+YkUmjwayMM3TR0W0teE=,tag:Ha+8dv7299lPiPDoXU2Lig==,type:str]
email:
accounts:
lotte:
password: ENC[AES256_GCM,data:+Sf6HN8A1ULHW7nX,iv:yG2I0IX4OQysLbMb4B+k7T9uxxvb4WEs0gcpLXO+mG0=,tag:pLTYJZlPeGrw/Ws4nA8KKw==,type:str]
sops:
kms: []
gcp_kms: []
@ -28,8 +37,8 @@ sops:
ZC92TnJZb3NBVUdteHhrNk5pK3QwSmcKbY4gZ0wDYR2A9mG8i69kY1KGi5iiAUWo
jHi0K4vaAQly8IbKnMtxCOlzpLPBg2zCV9zSyOyDYedf1zEt+lnNAw==
-----END AGE ENCRYPTED FILE-----
lastmodified: "2024-11-11T07:49:49Z"
mac: ENC[AES256_GCM,data:whBphPJ655nUxGsTnyQKWHwXHLbEVH8OSMfXCydYCaHbanAjsM1laupfreJKz36H7LLs3u6ms24NLuOpNgoKve8tjdh2kj7NAFxKagVsP9eoRQcfR10QUN9u6GBRSY5Us46uJekS/yyTd7obA4O0GdG32fR9/o4St/7g3Xod4Zs=,iv:mY3CnvVDgvWliF966dqS0QJN5sLyvVuAy/SS4cfb4XI=,tag:+9QhY39b+N4HGiTQ0HVsjQ==,type:str]
lastmodified: "2024-11-11T08:57:33Z"
mac: ENC[AES256_GCM,data:cGooQpFW9SrmvFwxhBfUI/BUjYbrQTfyqvsa1vhdc9S1M+VFKzrmIfaSpuFslj6///WbvQKpi9qcqWNhCdr6wWMCSR14ewMk57i0l3AsmfT4j3yElMl15+ereQMZ3z2c1NbU4x1ZP0OSCPAXUgr44qzY3EVziQrwbNRlAGqkk8M=,iv:U7O9mFyD6rA1efTlQKcl13vLC9TPekiDfCJGbAYtjPk=,tag:K3sd6T+wSdWdOU8VkEnbOw==,type:str]
pgp: []
unencrypted_suffix: _unencrypted
version: 3.9.1