diff --git a/index.html b/index.html index a6e045870..38062f39e 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf
or dconf.service
?+
ca.desrt.dconf
or dconf.service
?This manual will eventually describe how to install, use, and extend Home Manager.
diff --git a/options.html b/options.html index a2dc2e4b4..509efc7c2 100644 --- a/options.html +++ b/options.html @@ -7,6 +7,8 @@ }
Declared by:
accounts.email.accounts.<name>.smtp.tls.useStartTls
Whether to use STARTTLS.
Type: boolean
Default: false
Declared by:
<home-manager/modules/accounts/email.nix>
+ |
accounts.email.accounts.<name>.thunderbird.enable
Whether to enable the Thunderbird mail client for this account.
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
accounts.email.accounts.<name>.thunderbird.profiles
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. +
Type: list of string
Default:
+ [
+
+ ]
+
Example:
[ "profile1" "profile2" ] +
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
accounts.email.accounts.<name>.thunderbird.settings
Extra settings to add to this Thunderbird account configuration.
+The id
given as argument is an automatically
+generated account identifier.
+
Type: function that evaluates to a(n) attribute set of (boolean or signed integer or string)
Default: _: { }
Example:
id: { + "mail.identity.id_${id}.protectSubject" = false; + "mail.identity.id_${id}.autoEncryptDrafts" = false; +}; +
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
|
accounts.email.accounts.<name>.userName
The server username of this account. This will be used as the SMTP, IMAP, and JMAP user name.
Type: null or string
Default: null
Declared by:
@@ -7735,6 +7758,43 @@ Requires a window manager that respects scroll hints.
|
programs.texlive.extraPackages
Extra packages available to TeX Live.
Type: unspecified value
Default: "tpkgs: { inherit (tpkgs) collection-basic; }"
Example:
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
Declared by:
<home-manager/modules/programs/texlive.nix>
+ |
programs.thunderbird.enable
Whether to enable Thunderbird.
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
programs.thunderbird.package
The Thunderbird package to use.
Type: package
Default: pkgs.thunderbird
Example: pkgs.thunderbird-91
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
programs.thunderbird.profiles
Type: attribute set of (submodule)
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
programs.thunderbird.profiles.<name>.isDefault
Whether this is a default profile. There must be exactly one +default profile. +
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
programs.thunderbird.profiles.<name>.name
This profile's name.
Type: string (read only)
Default: "‹name›"
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
programs.thunderbird.profiles.<name>.settings
Preferences to add to this profile's
+user.js
.
+
Type: attribute set of (boolean or signed integer or string)
Default:
+ {
+
+ }
+
Example:
{ + "mail.spellcheck.inline" = false; +} +
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
programs.thunderbird.profiles.<name>.withExternalGnupg
Allow using external GPG keys with GPGME.
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
+ |
programs.thunderbird.settings
Attribute set of Thunderbird preferences to be added to +all profiles. +
Type: attribute set of (boolean or signed integer or string)
Default:
+ {
+
+ }
+
Example:
{ + "general.useragent.override" = ""; + "privacy.donottrackheader.enabled" = true; +} +
Declared by:
+ <home-manager/modules/programs/thunderbird.nix>
|
programs.timidity.enable
Whether to enable timidity, a software MIDI renderer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/timidity.nix>
|
programs.timidity.package
The timidity package to use.
Type: package
Default: pkgs.timidity
Declared by: