nix/home-manager/common/software/gui/thunderbird.nix

10 lines
154 B
Nix
Raw Normal View History

2024-05-07 05:51:52 +02:00
{ ... }: {
programs.thunderbird = {
enable = true;
profiles."Default" = {
isDefault = true;
2024-05-07 15:30:24 +02:00
withExternalGnupg = true;
2024-05-07 05:51:52 +02:00
};
};
}