1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00
This commit is contained in:
rycee 2023-06-14 15:55:37 +00:00
parent b95f4acffb
commit 67171cd8df

View file

@ -853,6 +853,14 @@ Note, if set then the system default may still be accepted.</p><p><span class="e
&lt;home-manager/modules/accounts/email.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-accounts.email.accounts._name_.thunderbird.enable"></a><a class="term" href="options.html#opt-accounts.email.accounts._name_.thunderbird.enable"><code class="option">accounts.email.accounts.&lt;name&gt;.thunderbird.enable</code></a></span></dt><dd><p>Whether to enable the Thunderbird mail client for this account.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/thunderbird.nix#blob-path" target="_top">
&lt;home-manager/modules/programs/thunderbird.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-accounts.email.accounts._name_.thunderbird.perIdentitySettings"></a><a class="term" href="options.html#opt-accounts.email.accounts._name_.thunderbird.perIdentitySettings"><code class="option">accounts.email.accounts.&lt;name&gt;.thunderbird.perIdentitySettings</code></a></span></dt><dd><p>Extra settings to add to each identity of this Thunderbird
account configuration. The <code class="varname">id</code> given as
argument is an automatically generated identifier.</p><p><span class="emphasis"><em>Type:</em></span> function that evaluates to a(n) attribute set of (boolean or signed integer or string)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">_: { }</code></p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting">id: {
"mail.identity.id_${id}.protectSubject" = false;
"mail.identity.id_${id}.autoEncryptDrafts" = false;
};
</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/thunderbird.nix#blob-path" target="_top">
&lt;home-manager/modules/programs/thunderbird.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-accounts.email.accounts._name_.thunderbird.profiles"></a><a class="term" href="options.html#opt-accounts.email.accounts._name_.thunderbird.profiles"><code class="option">accounts.email.accounts.&lt;name&gt;.thunderbird.profiles</code></a></span></dt><dd><p>List of Thunderbird profiles for which this account should be
enabled. If this list is empty (the default), this account will
be enabled for all declared profiles.</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting">[ "profile1" "profile2" ]
@ -861,8 +869,7 @@ be enabled for all declared profiles.</p><p><span class="emphasis"><em>Type:</em
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-accounts.email.accounts._name_.thunderbird.settings"></a><a class="term" href="options.html#opt-accounts.email.accounts._name_.thunderbird.settings"><code class="option">accounts.email.accounts.&lt;name&gt;.thunderbird.settings</code></a></span></dt><dd><p>Extra settings to add to this Thunderbird account configuration.
The <code class="varname">id</code> given as argument is an automatically
generated account identifier.</p><p><span class="emphasis"><em>Type:</em></span> function that evaluates to a(n) attribute set of (boolean or signed integer or string)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">_: { }</code></p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting">id: {
"mail.identity.id_${id}.protectSubject" = false;
"mail.identity.id_${id}.autoEncryptDrafts" = false;
"mail.server.server_${id}.check_new_mail" = false;
};
</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/thunderbird.nix#blob-path" target="_top">
&lt;home-manager/modules/programs/thunderbird.nix&gt;