From e3af64bf9e0199b095f2ddf8728b1ac65e412cab Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Thu, 17 Apr 2025 02:05:55 -0600 Subject: [PATCH] attempt 2... --- modules/servers/multi-scrobbler.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/servers/multi-scrobbler.nix b/modules/servers/multi-scrobbler.nix index bbd20a5..333742f 100644 --- a/modules/servers/multi-scrobbler.nix +++ b/modules/servers/multi-scrobbler.nix @@ -19,8 +19,8 @@ in PGID = toString config.users.groups.users.gid; BASE_URL = cfg.url; DEEZER_REDIRECT_URI = "http://${config.my.ips.${cfg.hostName}}:${toString cfg.port}/deezer/callback"; - MALOJA_URL = servers.maloja.local; - PLEX_URL = servers.plex.local; + MALOJA_URL = "http://${config.my.servers.server.ip}:${toString servers.maloja.port}"; + PLEX_URL = "http://${config.my.servers.server.ip}:${toString servers.plex.port}"; WS_ENABLE = "true"; }; volumes = [ "${config.my.containerData}/multi-scrobbler:/config" ];