Skip to content

Jellyseerr - Radarr

Configuration options for jellyseerr radarr.

Available Options

This page documents 14 configuration options.

nixflix.jellyseerr.radarr

Radarr instances to configure. Automatically configured from config.nixflix.radarr when enabled, otherwise {}.

Default instances can be overridden with lib.mkForce {}.

Typeattribute set of (submodule)
Default
{ }
Example
{
  Radarr = {
    activeDirectory = "/movies";
    activeProfileName = "HD-1080p";
    apiKey = {
      _secret = "/run/secrets/radarr-apikey";
    };
  };
  "Radarr 4K" = {
    activeDirectory = "/movies-4k";
    activeProfileName = "UHD-2160p";
    apiKey = {
      _secret = "/run/secrets/radarr-4k-apikey";
    };
    is4k = true;
  };
}
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.activeDirectory

Root folder for movies

Typestring
Default
head (config.nixflix.radarr.mediaDirs or ["/movies"])
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.activeProfileName

Quality profile name. Defaults to first available quality profile in Jellyseerr.

Typenull or string
Default
null
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.apiKey

Radarr API key.

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.

Typestring or (submodule)
Default
null
Example
{ _secret = "/run/secrets/secret-file"; }
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.baseUrl

Radarr URL base

Typestring
Default
""
Example
"/radarr"
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.externalUrl

External URL for Radarr

Typestring
Default
""
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.hostname

Radarr hostname

Typestring
Default
"127.0.0.1"
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.is4k

Is this a 4K Radarr instance

Typeboolean
Default
false
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.isDefault

Is this the default Radarr instance

Typeboolean
Default
false
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.minimumAvailability

Minimum availability for movies

Typeone of "announced", "inCinemas", "released"
Default
"released"
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.port

Radarr port

Type16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default
7878
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.preventSearch

Prevent Jellyseerr from triggering searches

Typeboolean
Default
false
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.syncEnabled

Enable automatic sync with Radarr

Typeboolean
Default
false
Declared inmodules/jellyseerr/options/radarr.nix

nixflix.jellyseerr.radarr.<name>.useSsl

Use SSL to connect to Radarr

Typeboolean
Default
false
Declared inmodules/jellyseerr/options/radarr.nix