Thunderbird: Difference between revisions

Klinger (talk | contribs)
m fixed home manager capitialization
m Replace notes by inline text.
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:


== Install Thunderbird ==
== Install Thunderbird ==
You can just install the package. There are no options for configuration available.
You can just install the package:
<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nixos">
   environment.systemPackages = with pkgs; [
   environment.systemPackages = with pkgs; [
     thunderbird
     thunderbird
   ];
   ];
</syntaxhighlight>
</syntaxhighlight>Or by setting <code>programs.thunderbird.enable</code> to true in your system configuration (Usable in unstable, will be available in version 24.11).


== 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 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 22: Line 23:
* Thunderbird (site): https://www.thunderbird.net/
* Thunderbird (site): https://www.thunderbird.net/
* Thunderbird (sourcecode): https://hg.mozilla.org/comm-central
* Thunderbird (sourcecode): 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]]