refactor: further progress

This commit is contained in:
2026-04-25 00:19:20 +02:00
parent 55fbe82a42
commit 0500aab3cb
31 changed files with 680 additions and 398 deletions
+4 -4
View File
@@ -7,7 +7,7 @@
...
}:
let
user = config.meta.user;
account = config.meta.user.account;
mkOffice365Account =
{
address,
@@ -17,7 +17,7 @@
{
enable = true;
inherit address primary;
realName = user.realName;
realName = account.realName;
userName = address;
thunderbird = {
enable = true;
@@ -37,7 +37,7 @@
{
enable = true;
inherit address primary;
realName = user.realName;
realName = account.realName;
userName = address;
thunderbird.enable = true;
imap = {
@@ -81,6 +81,6 @@
};
};
accounts.email.accounts = lib.mapAttrs (_: mkEmailAccount) user.emails;
accounts.email.accounts = lib.mapAttrs (_: mkEmailAccount) account.emails;
};
}