14 lines
292 B
Nix
14 lines
292 B
Nix
{ nixosConfig, pkgs, ... }:
|
|
{
|
|
programs.thunderbird = {
|
|
inherit (nixosConfig.jalr.gui) enable;
|
|
package = pkgs.thunderbird-esr;
|
|
profiles."default" = {
|
|
isDefault = true;
|
|
withExternalGnupg = true;
|
|
};
|
|
settings = {
|
|
"mail.chat.enabled" = false;
|
|
};
|
|
};
|
|
}
|