Radarr - Config¶
Configuration options for radarr config.
Available Options
This page documents 4 configuration options.
nixflix.radarr.config¶
Radarr configuration options that will be set via the API.
| Type | submodule |
| Default | |
| Declared in | modules/radarr.nix |
nixflix.radarr.config.apiKey¶
API key for Radarr.
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.
| Type | string or (submodule) |
| Default | |
| Example | |
| Declared in | modules/radarr.nix |
nixflix.radarr.config.apiVersion¶
Current version of the API of the service
| Type | string |
| Default | |
| Declared in | modules/radarr.nix |
nixflix.radarr.config.rootFolders¶
List of root folders to create via the API /rootfolder endpoint. Each folder is an attribute set that will be converted to JSON and sent to the API.
For Sonarr/Radarr, a simple path is sufficient: {path = "/path/to/folder";}
For Lidarr, additional fields are required like defaultQualityProfileId, etc.
| Type | list of (attribute set) |
| Default | |
| Declared in | modules/radarr.nix |