nixos-config/config/programs/mail.nix

10 lines
153 B
Nix
Raw Normal View History

2023-12-28 19:46:45 +00:00
{pkgs, ...}: {
2023-03-18 20:31:44 +00:00
programs.thunderbird = {
enable = true;
profiles.main = {
2023-03-18 21:33:26 +00:00
withExternalGnupg = true;
2023-03-18 22:08:30 +00:00
isDefault = true;
2023-03-18 20:31:44 +00:00
};
};
2022-01-19 13:56:46 +00:00
}