From 677ab11598929b71952bd2c74b1fe975cd0986f9 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sat, 6 Sep 2025 13:06:40 -0600 Subject: [PATCH] new ips --- modules/modules.nix | 6 +++--- modules/servers/multi-scrobbler.nix | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/modules.nix b/modules/modules.nix index 6b28668..6566b50 100644 --- a/modules/modules.nix +++ b/modules/modules.nix @@ -42,7 +42,7 @@ in }; routerip = lib.mkOption { type = lib.types.str; - default = "192.168.1.254"; + default = "192.168.100.1"; description = "The ip address of my router."; }; domain = lib.mkOption { @@ -53,9 +53,9 @@ in ips = lib.mkOption { type = lib.types.attrsOf lib.types.str; default = { - server = "192.168.1.69"; + server = "192.168.100.15"; miniserver = "192.168.1.100"; - workstation = "192.168.1.64"; + workstation = "192.168.100.18"; }; description = "Set of IP's for all my computers."; }; diff --git a/modules/servers/multi-scrobbler.nix b/modules/servers/multi-scrobbler.nix index cfd6c1e..d8f16cb 100644 --- a/modules/servers/multi-scrobbler.nix +++ b/modules/servers/multi-scrobbler.nix @@ -18,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://192.168.1.69:42010"; - PLEX_URL = "http://192.168.1.69:32400"; + MALOJA_URL = "http://192.168.100.15:42010"; + PLEX_URL = "http://192.168.100.15:32400"; WS_ENABLE = "true"; }; volumes = [ "${config.my.containerData}/multi-scrobbler:/config" ];