24 lines
445 B
Nix
24 lines
445 B
Nix
{
|
|
imports = [ ../email ];
|
|
config = {
|
|
accounts.email.accounts = {
|
|
autistici.thunderbird = {
|
|
enable = true;
|
|
profiles = [ "default" ];
|
|
};
|
|
mlabs.thunderbird = {
|
|
enable = true;
|
|
profiles = [ "default" ];
|
|
};
|
|
};
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles = {
|
|
default = {
|
|
isDefault = true;
|
|
};
|
|
# mlabs = {};
|
|
};
|
|
};
|
|
};
|
|
}
|