diff --git a/users/b12f/email.nix b/users/b12f/email.nix index 88bb3a6..1c6cfdd 100644 --- a/users/b12f/email.nix +++ b/users/b12f/email.nix @@ -14,7 +14,7 @@ with lib; let generateMailAccount = args@{ address, ... }: rec { inherit address; - realName = psCfg.user.fullName; + realName = if (args ? "fullName") then args.fullName else psCfg.user.fullName; signature = { showSignature = "append"; text = if (args ? "emptysignature") then "" else builtins.readFile (./.config/neomutt + "/${builtins.replaceStrings ["@"] ["_"] address}.signature"); @@ -133,11 +133,13 @@ in { }; } { + fullName = "mezza"; address = mkEmailAddress "mail" "mezza.biz"; host = "mail.mezza.biz"; emptysignature = true; } { + fullname = "hwd"+ "zz"; address = mkEmailAddress "mail" "h" + "w" + "dz" + "z.net"; host = "mail.h" + "w" + "dz" + "z.net"; emptysignature = true;