This commit is contained in:
2025-09-06 13:06:40 -06:00
parent 2c3333e7e1
commit 677ab11598
2 changed files with 5 additions and 5 deletions

View File

@@ -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.";
};