Radarr: Difference between revisions
m The default port for Radarr is 7878 - 8989 is the Sonarr default. |
m make the code runnable |
||
| Line 18: | Line 18: | ||
Radarr can be further configured using NixOS options. | Radarr can be further configured using NixOS options. | ||
< | <syntaxhighlight lang="nix"> | ||
services.radarr = { | services.radarr = { | ||
... | #... | ||
user = "user"; | user = "user"; | ||
group = "group"; | group = "group"; | ||
dataDir = "path/to/directory" | dataDir = "path/to/directory"; | ||
}; | }; | ||
</ | </syntaxhighlight> | ||
Both the <code>user</code> and <code>group</code> options are used to specify which user and group is used to run Radarr. The <code>dataDir</code> option specifies the directory where Radarr stores its data files, and can be set to a custom location. When setting the <code>dataDir</code> option, be careful of permissions as a specified user still needs the correct read/write permissions in this directory. | Both the <code>user</code> and <code>group</code> options are used to specify which user and group is used to run Radarr. The <code>dataDir</code> option specifies the directory where Radarr stores its data files, and can be set to a custom location. When setting the <code>dataDir</code> option, be careful of permissions as a specified user still needs the correct read/write permissions in this directory. | ||