nix-config/modules/home/email/default.nix
2023-11-13 18:35:15 +01:00

10 lines
143 B
Nix

{ ... }: {
programs.thunderbird = {
enable = true;
profiles = {
"default" = {
isDefault = true;
};
};
};
}