From 01755071f1c409f860d979f9d7bb18615094843f Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Thu, 17 Apr 2025 02:08:03 -0600 Subject: [PATCH] stewpid --- modules/servers/multi-scrobbler.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/servers/multi-scrobbler.nix b/modules/servers/multi-scrobbler.nix index 333742f..cfd6c1e 100644 --- a/modules/servers/multi-scrobbler.nix +++ b/modules/servers/multi-scrobbler.nix @@ -1,7 +1,6 @@ { lib, config, ... }: let - servers = config.my.servers; - cfg = servers.multi-scrobbler; + cfg = config.my.servers.multi-scrobbler; setup = import ./setup.nix { inherit lib config; }; in { @@ -19,8 +18,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 = "http://${config.my.servers.server.ip}:${toString servers.maloja.port}"; - PLEX_URL = "http://${config.my.servers.server.ip}:${toString servers.plex.port}"; + MALOJA_URL = "http://192.168.1.69:42010"; + PLEX_URL = "http://192.168.1.69:32400"; WS_ENABLE = "true"; }; volumes = [ "${config.my.containerData}/multi-scrobbler:/config" ];