Thunderbird: Difference between revisions

From NixOS Wiki
Klinger (talk | contribs)
Created page with "Thunderbird is an open-source e-mail client for desktop environments, which also functions as a full personal information manager with a calendar and contactbook, as well as an RSS feed reader, chat client (IRC/XMPP/Matrix), and news client. == Install Thunderbird == You can just install the package. There are no options for configuration available. <syntaxhighlight lang="nixos"> environment.systemPackages = with pkgs; [ thunderbird ]; </syntaxhighlight> == C..."
 
Klinger (talk | contribs)
m fixed home manager capitialization
Line 12: Line 12:
== Configuration of Thunderbird ==
== Configuration of Thunderbird ==
Thunderbird stores configuration and data in the hidden .thunderbird folder in the homedirectories. There is currently no way to configure it via Nixpkgs options. There are two possible solutions:  
Thunderbird stores configuration and data in the hidden .thunderbird folder in the homedirectories. There is currently no way to configure it via Nixpkgs options. There are two possible solutions:  
* Use [[Home manager]].
* Use [[Home Manager]].
* Manual configuration with the Thunderbird GUI and backup (and move to others PCs) of the .thunderbird folder. Using IMAP with server-side storage will enable to have several instances of Thunderbird with the same settings and e-mail content.
* Manual configuration with the Thunderbird GUI and backup (and move to others PCs) of the .thunderbird folder. Using IMAP with server-side storage will enable to have several instances of Thunderbird with the same settings and e-mail content.



Revision as of 20:16, 25 June 2024

Thunderbird is an open-source e-mail client for desktop environments, which also functions as a full personal information manager with a calendar and contactbook, as well as an RSS feed reader, chat client (IRC/XMPP/Matrix), and news client.


Install Thunderbird

You can just install the package. There are no options for configuration available.

  environment.systemPackages = with pkgs; [
    thunderbird
  ];

Configuration of Thunderbird

Thunderbird stores configuration and data in the hidden .thunderbird folder in the homedirectories. There is currently no way to configure it via Nixpkgs options. There are two possible solutions:

  • Use Home Manager.
  • Manual configuration with the Thunderbird GUI and backup (and move to others PCs) of the .thunderbird folder. Using IMAP with server-side storage will enable to have several instances of Thunderbird with the same settings and e-mail content.

Troubleshooting

(nothing yet)

References