nixos-config/config/programs/mail.nix

11 lines
189 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 = {
2023-12-28 19:46:45 +00:00
package = pkgs.thunderbird-bin;
2023-03-18 20:31:44 +00:00
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
}