diff --git a/options.xhtml b/options.xhtml index 558f34cbe..d58f6b251 100644 --- a/options.xhtml +++ b/options.xhtml @@ -80654,6 +80654,157 @@ attribute set of anything
+services.jellyfin-mpv-shim.enable
+
+
+Whether to enable Jellyfin mpv shim.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/services/jellyfin-mpv-shim.nix>
+
+ |
services.jellyfin-mpv-shim.package
+
+
+The jellyfin-mpv-shim package to use.
+ +Type: +package
+ +Default:
+pkgs.jellyfin-mpv-shim
Declared by:
+
+
+<home-manager/modules/services/jellyfin-mpv-shim.nix>
+
+ |
services.jellyfin-mpv-shim.mpvBindings
+
+
+mpv input bindings to use for jellyfin-mpv-shim. +If null, jellyfin-mpv-shim will use its default input configuration.
+ +Type: +null or (attribute set of string)
+ +Default:
+null
Example:
{
+ WHEEL_UP = "seek 10";
+ WHEEL_DOWN = "seek -10";
+ }
+
+
+Declared by:
+
+
+<home-manager/modules/services/jellyfin-mpv-shim.nix>
+
+ |
services.jellyfin-mpv-shim.mpvConfig
+
+
+mpv configuration options to use for jellyfin-mpv-shim. +If null, jellyfin-mpv-shim will use its default mpv configuration.
+ +Type: +null or (attribute set of (string or signed integer or boolean or floating point number))
+ +Default:
+null
Example:
{
+ profile = "gpu-hq";
+ force-window = true;
+ }
+
+
+Declared by:
+
+
+<home-manager/modules/services/jellyfin-mpv-shim.nix>
+
+ |
services.jellyfin-mpv-shim.settings
+
+
+Configuration written to
+$XDG_CONFIG_HOME/jellyfin-mpv-shim/conf.json. See
+https://github.com/jellyfin/jellyfin-mpv-shim#configuration
+for the configuration documentation.
Type: +JSON value
+ +Default:
+{ }
Example:
{
+ allow_transcode_to_h265 = false;
+ always_transcode = false;
+ audio_output = "hdmi";
+ auto_play = true;
+ fullscreen = true;
+ player_name = "mpv-shim";
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/services/jellyfin-mpv-shim.nix>
+
+ |
services.kanshi.enable