nixfleet/hmModules/thunderbird/default.nix
Andrea Ciceri a394b9cefd
All checks were successful
/ test (push) Successful in 32s
Reformat everything
2024-09-20 11:37:17 +02:00

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