Radarr: Difference between revisions
m Category:Applications |
m Added Server category as Radarr isn't listed but Sonarr is. |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 13: | Line 13: | ||
</syntaxHighlight> | </syntaxHighlight> | ||
The <code>openFirewall</code> option is used to open port <code> | The <code>openFirewall</code> option is used to open port <code>7878</code> on the host firewall. | ||
= Further configuration = | = Further configuration = | ||
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. | ||
Line 31: | Line 31: | ||
[[Category:Applications]] | [[Category:Applications]] | ||
[[Category:Server]] |