diff --git a/index.html b/index.html index bf949968..0b024ab5 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 2081cd32..dff87bb0 100644 --- a/options.html +++ b/options.html @@ -8853,6 +8853,49 @@ useful for creating the directories mbsync is going to use.
services.mbsync.verbose
Whether mbsync should produce verbose output.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/mbsync.nix>
+ |
services.mopidy.enable
Whether to enable Mopidy music player daemon.
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/services/mopidy.nix>
+ |
services.mopidy.extensionPackages
Mopidy extensions that should be loaded by the service. +
Type: list of packages
Default:
+ [
+
+ ]
+
Example: with pkgs; [ mopidy-spotify mopidy-mpd mopidy-mpris ]
Declared by:
+ <home-manager/modules/services/mopidy.nix>
+ |
services.mopidy.settings
Configuration written to
+$XDG_CONFIG_HOME/mopidy/mopidy.conf
.
+
+See https://docs.mopidy.com/en/latest/config/ for +more details. +
Type: attribute set of attribute set of Mopidy config valuess
Default:
+ {
+
+ }
+
Example:
{ + file = { + media_dirs = [ + "$XDG_MUSIC_DIR|Music" + "~/library|Library" + ]; + follow_symlinks = true; + excluded_file_extensions = [ + ".html" + ".zip" + ".jpg" + ".jpeg" + ".png" + ]; + }; + + # Please don't put your mopidy-spotify configuration in the public. :) + # Think of your Spotify Premium subscription! + spotify = { + client_id = "CLIENT_ID"; + client_secret = "CLIENT_SECRET"; + }; +} +
Declared by:
+ <home-manager/modules/services/mopidy.nix>
|
services.mpd.enable
Whether to enable MPD, the music player daemon.
Type: boolean
Default: false
Declared by: