nix/home-manager/modules/thunderbird.nix

17 lines
No EOL
351 B
Nix
Executable file

{ pkgs, ... }:
{
programs.thunderbird = {
enable = true;
package = pkgs.thunderbird-latest;
profiles = {
default = {
isDefault = true;
withExternalGnupg = true;
};
};
settings = {
"mailnews.start_page.enabled" = false;
};
};
}