Thunderbird: Difference between revisions

From NixOS Wiki
Klinger (talk | contribs)
m fixed home manager capitialization
L0b0 (talk | contribs)
m Grammar
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
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.  
[https://www.thunderbird.net/ Thunderbird] is an open-source e-mail client for desktop environments, which also functions as a full personal information manager with a calendar and address book, as well as an RSS feed reader, chat client (IRC/XMPP/Matrix), and news client.
== Install Thunderbird ==
In NixOS 24.11 onwards, set <code>programs.thunderbird.enable = true</code>.


 
In NixOS 24.05 or older, add <code>pkgs.thunderbird</code> to <code>environment.systemPackages</code>.
== Install Thunderbird ==
You can just install the package. There are no options for configuration available.
<syntaxhighlight lang="nixos">
  environment.systemPackages = with pkgs; [
    thunderbird
  ];
</syntaxhighlight>


== 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 home directories. There are the following solutions:  
* Use Nixpkgs, currently setting policies and preferences is supported (Usable in unstable, will be available in version 24.11).
* 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.
Line 20: Line 16:
== References ==
== References ==


* Thunderbird (site): https://www.thunderbird.net/
* Thunderbird website: https://www.thunderbird.net/
* Thunderbird (sourcecode): https://hg.mozilla.org/comm-central
* Thunderbird source code: https://hg.mozilla.org/comm-central
* [https://search.nixos.org/options?channel=unstable&query=programs.thunderbird List of Nixpkgs' Thunderbird options]


[[Category:Applications]]
[[Category:Applications]]

Latest revision as of 23:35, 9 October 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 address book, as well as an RSS feed reader, chat client (IRC/XMPP/Matrix), and news client.

Install Thunderbird

In NixOS 24.11 onwards, set programs.thunderbird.enable = true.

In NixOS 24.05 or older, add pkgs.thunderbird to environment.systemPackages.

Configuration of Thunderbird

Thunderbird stores configuration and data in the hidden .thunderbird folder in the home directories. There are the following solutions:

  • Use Nixpkgs, currently setting policies and preferences is supported (Usable in unstable, will be available in version 24.11).
  • 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