mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
36 lines
780 B
Nix
36 lines
780 B
Nix
_: {
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles.main = {
|
|
isDefault = true;
|
|
withExternalGnupg = true;
|
|
};
|
|
};
|
|
accounts.email.accounts = let
|
|
katIdentity = {
|
|
realName = "Kat Inskip";
|
|
};
|
|
dorkIdentity = {
|
|
realName = "Kat Dork";
|
|
};
|
|
mainEnable.thunderbird = {
|
|
enable = true;
|
|
profiles = [ "main" ];
|
|
};
|
|
gmailAccount = mainEnable // {
|
|
flavor = "gmail.com";
|
|
};
|
|
in {
|
|
primary = gmailAccount // katIdentity // {
|
|
primary = true;
|
|
address = "kat@inskip.me";
|
|
};
|
|
home = gmailAccount // katIdentity // {
|
|
address = "kat.inskip@gmail.com";
|
|
};
|
|
dork = gmailAccount // dorkIdentity // {
|
|
address = "dorkdev99@gmail.com";
|
|
};
|
|
};
|
|
|
|
}
|