nix/home-manager/common/software/gui/thunderbird.nix
2024-05-07 22:30:24 +09:00

9 lines
154 B
Nix

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