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