Skip to content

Notif - Jellyfin

Configuration options for notif jellyfin.

Available Options

This page documents 8 configuration options.

nixflix.notif.jellyfin.enable

Whether or not this notification is enabled.

Typeboolean
Default
config.nixflix.jellyfin.enable
Declared inmodules/notif/options.nix

nixflix.notif.jellyfin.apiKey

API key for Jellyfin.

Warning

Can be a plain string (visible in Nix store) or { _secret = /path/to/file; } for file-based secrets.

Plain-text secrets will be visible in the Nix store. Use { _secret = path; } for sensitive data.

Typenull or string or (submodule)
Default
config.nixflix.jellyfin.apiKey
Example
{ _secret = "/run/secrets/secret-file"; }
Declared inmodules/notif/options.nix

nixflix.notif.jellyfin

Emby/Jellyfin notification definition for Starr services.

Typeopen submodule of attribute set of anything
Default
{ }
Declared inmodules/notif/options.nix

nixflix.notif.jellyfin.dependencies

systemd services that this integration depends on

Typelist of string
Default
[
  "jellyfin.service"
]
Declared inmodules/notif/options.nix

nixflix.notif.jellyfin.host

Host of the Jellyfin server.

Typestring
Default
config.nixflix.jellyfin.connectionAddress
Declared inmodules/notif/options.nix

nixflix.notif.jellyfin.name

User-defined name for the notification instance.

Typestring
Default
"Emby / Jellyfin"
Declared inmodules/notif/options.nix

nixflix.notif.jellyfin.port

Port of the Jellyfin server.

Type16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default
config.nixflix.jellyfin.network.internalHttpPort
Declared inmodules/notif/options.nix

nixflix.notif.jellyfin.services

Which Starr services to configure this notification on.

Typelist of string
Default
optionals config.nixflix.jellyfin.enable (
  [ "sonarr" "sonarr-anime" "radarr" ]
  ++ optional (config.nixflix.jellyfin.libraries.Music or null != null) "lidarr"
)
Declared inmodules/notif/options.nix