mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-12-13 22:25:18 +01:00
services/*arr: configure port correctly
Some checks failed
/ Build Nix targets (push) Has been cancelled
Some checks failed
/ Build Nix targets (push) Has been cancelled
This commit is contained in:
parent
3d42c4a9aa
commit
76d432162d
3 changed files with 3 additions and 3 deletions
|
|
@ -3,7 +3,6 @@
|
|||
let
|
||||
cfg = config.my.services.prowlarr;
|
||||
inherit (config.networking) domain;
|
||||
# in 25.05 this might be configurable
|
||||
port = 9696;
|
||||
in
|
||||
{
|
||||
|
|
@ -22,6 +21,7 @@ in
|
|||
services = {
|
||||
prowlarr = {
|
||||
enable = true;
|
||||
settings.server.port = port;
|
||||
};
|
||||
prometheus.exporters.exportarr-prowlarr = {
|
||||
inherit (config.services.prometheus) enable;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
let
|
||||
cfg = config.my.services.radarr;
|
||||
inherit (config.networking) domain;
|
||||
# in 25.05 this might be configurable
|
||||
port = 7878;
|
||||
in
|
||||
{
|
||||
|
|
@ -22,6 +21,7 @@ in
|
|||
services = {
|
||||
radarr = {
|
||||
enable = true;
|
||||
settings.server.port = port;
|
||||
};
|
||||
prometheus.exporters.exportarr-radarr = {
|
||||
inherit (config.services.prometheus) enable;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
let
|
||||
cfg = config.my.services.sonarr;
|
||||
inherit (config.networking) domain;
|
||||
# in 25.05 this might be configurable
|
||||
port = 8989;
|
||||
in
|
||||
{
|
||||
|
|
@ -28,6 +27,7 @@ in
|
|||
services = {
|
||||
sonarr = {
|
||||
enable = true;
|
||||
settings.server.port = port;
|
||||
};
|
||||
prometheus.exporters.exportarr-sonarr = {
|
||||
inherit (config.services.prometheus) enable;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue