nixfleet/hmModules/thunderbird/default.nix
2023-06-16 16:52:15 +02:00

24 lines
439 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 = {};
};
};
};
}