MyNixOS website logo
option

services.unpackerr.settings

Unpackerr TOML configuration as a Nix attribute set. Refer to Unpackerr docs for details. For setting secrets refer to this section.

Declarations
Type
TOML value
Default
{ }
Example
{
  radarr = [
    {
      api_key = "0123456789abcdef0123456789abcdef";
      url = "http://127.0.0.1:8989";
    }
  ];
  sonarr = [
    {
      api_key = "0123456789abcdef0123456789abcdef";
      url = "http://127.0.0.1:7878";
    }
  ];
}