From a0cf5b51ba39079ca0ed735058777d124a52a265 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Wed, 6 Aug 2025 05:16:38 +0000 Subject: [PATCH] deploy: ad5d2b4aa770fdc74c80fd682fee0b00a8ad7991 --- options.xhtml | 95 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) diff --git a/options.xhtml b/options.xhtml index 55023d124..0da9e9dc4 100644 --- a/options.xhtml +++ b/options.xhtml @@ -98753,6 +98753,101 @@ list of string

+
+ + services.rescrobbled.enable + + +
+
+

Whether to enable rescrobbled, a MPRIS music scrobbler daemon.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/rescrobbled.nix> + +
+
+
+ + services.rescrobbled.package + + +
+
+

The rescrobbled package to use.

+ +

Type: +package

+ +

Default: +pkgs.rescrobbled

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/rescrobbled.nix> + +
+
+
+ + services.rescrobbled.settings + + +
+
+

Configuration written to $XDG_CONFIG_HOME/rescrobbled/config.toml +See https://github.com/InputUsername/rescrobbled#configuration for +the full list of options.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  filter-script = "path/to/script";
+  lastfm-key = "Last.fm API key";
+  lastfm-secret = "Last.fm API secret";
+  listenbrainz = [
+    {
+      token = "User token";
+      url = "Custom API URL";
+    }
+  ];
+  min-play-time = 0;
+  player-whitelist = [
+    "Player MPRIS identity or bus name"
+  ];
+  use-track-start-timestamp = false;
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/rescrobbled.nix> + +
+
services.restic.enable