home-manager/modules/thunderbird.nix
2023-09-07 03:05:30 +02:00

11 lines
159 B
Nix

{...}: {
config.programs.thunderbird = {
enable = true;
profiles.kristian = {
isDefault = true;
withExternalGnupg = true;
};
};
}