Skip to content

Sonarr - Config - Delay Profiles

Configuration options for sonarr config delayProfiles.

Available Options

This page documents 12 configuration options.

nixflix.sonarr.config.delayProfiles

List of delay profiles to configure via the API /delayprofile endpoint.

Profiles are created/updated in id order. If no profile with id=1 is provided, a default profile will be added automatically.

Typelist of (submodule)
Default
[
  {
    enableUsenet = true;
    enableTorrent = true;
    preferredProtocol = "usenet";
    usenetDelay = 0;
    torrentDelay = 0;
    bypassIfHighestQuality = true;
    bypassIfAboveCustomFormatScore = false;
    minimumCustomFormatScore = 0;
    order = 2147483647;
    tags = [];
    id = 1;
  };
]
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.bypassIfAboveCustomFormatScore

Bypass delay if custom format score is above minimum

Typeboolean
Default
false
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.bypassIfHighestQuality

Bypass delay if release is the highest quality available

Typeboolean
Default
true
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.enableTorrent

Enable Torrent protocol for this profile

Typeboolean
Default
true
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.enableUsenet

Enable Usenet protocol for this profile

Typeboolean
Default
true
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.id

Unique identifier for the delay profile

Typesigned integer
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.minimumCustomFormatScore

Minimum custom format score to bypass delay

Typesigned integer
Default
0
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.order

Order/priority of this delay profile (lower values = higher priority)

Typesigned integer
Default
50
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.preferredProtocol

Preferred download protocol when both are available

Typeone of "usenet", "torrent"
Default
"usenet"
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.tags

List of tag IDs this delay profile applies to (empty = applies to all)

Typelist of signed integer
Default
[ ]
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.torrentDelay

Delay in minutes before grabbing a Torrent release

Typesigned integer
Default
0
Declared inmodules/sonarr.nix

nixflix.sonarr.config.delayProfiles.*.usenetDelay

Delay in minutes before grabbing a Usenet release

Typesigned integer
Default
0
Declared inmodules/sonarr.nix