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

10 lines
154 B
Nix
Raw Normal View History

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