networking: temporarily use 192 address

This commit is contained in:
Simon Gardling 2025-10-29 21:31:04 -04:00
parent ee628b296c
commit e2ba51580b
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -184,7 +184,8 @@
interfaces.${eth_interface} = { interfaces.${eth_interface} = {
ipv4.addresses = [ ipv4.addresses = [
{ {
address = "10.1.1.102"; address = "192.168.1.50";
# address = "10.1.1.102";
prefixLength = 24; prefixLength = 24;
} }
]; ];
@ -196,7 +197,8 @@
]; ];
}; };
defaultGateway = { defaultGateway = {
address = "10.1.1.1"; #address = "10.1.1.1";
address = "192.168.1.1";
interface = eth_interface; interface = eth_interface;
}; };
# TODO! fix this # TODO! fix this