mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
46 lines
833 B
Nix
46 lines
833 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";
|
|
};
|
|
};
|
|
}
|