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" ];