1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-13 12:31:07 +01:00
This commit is contained in:
rycee 2022-05-18 23:12:54 +00:00
parent f015b7a048
commit e78539c824
3 changed files with 52 additions and 9 deletions

View file

@ -8853,6 +8853,49 @@ useful for creating the directories mbsync is going to use.
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-services.mbsync.verbose"></a><a class="term" href="options.html#opt-services.mbsync.verbose"><code class="option">services.mbsync.verbose</code></a></span></dt><dd><p>Whether mbsync should produce verbose output.
</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</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/services/mbsync.nix#blob-path" target="_top">
&lt;home-manager/modules/services/mbsync.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-services.mopidy.enable"></a><a class="term" href="options.html#opt-services.mopidy.enable"><code class="option">services.mopidy.enable</code></a></span></dt><dd><p>Whether to enable Mopidy music player daemon.</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/services/mopidy.nix#blob-path" target="_top">
&lt;home-manager/modules/services/mopidy.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-services.mopidy.extensionPackages"></a><a class="term" href="options.html#opt-services.mopidy.extensionPackages"><code class="option">services.mopidy.extensionPackages</code></a></span></dt><dd><p>Mopidy extensions that should be loaded by the service.
</p><p><span class="emphasis"><em>Type:</em></span> list of packages</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">
[
]
</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">with pkgs; [ mopidy-spotify mopidy-mpd mopidy-mpris ]</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/services/mopidy.nix#blob-path" target="_top">
&lt;home-manager/modules/services/mopidy.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-services.mopidy.settings"></a><a class="term" href="options.html#opt-services.mopidy.settings"><code class="option">services.mopidy.settings</code></a></span></dt><dd><p>Configuration written to
<code class="filename">$XDG_CONFIG_HOME/mopidy/mopidy.conf</code>.
</p><p>
See <a class="link" href="https://docs.mopidy.com/en/latest/config/" target="_top">https://docs.mopidy.com/en/latest/config/</a> for
more details.
</p><p><span class="emphasis"><em>Type:</em></span> attribute set of attribute set of Mopidy config valuess</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">{
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";
};
}
</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/services/mopidy.nix#blob-path" target="_top">
&lt;home-manager/modules/services/mopidy.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-services.mpd.enable"></a><a class="term" href="options.html#opt-services.mpd.enable"><code class="option">services.mpd.enable</code></a></span></dt><dd><p>Whether to enable MPD, the music player daemon.
</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>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/services/mpd.nix#blob-path" target="_top">
&lt;home-manager/modules/services/mpd.nix&gt;