diff --git a/hosts/pre-router/dhcp.nix b/hosts/pre-router/dhcp.nix index e7bdbd2..5b45e0a 100644 --- a/hosts/pre-router/dhcp.nix +++ b/hosts/pre-router/dhcp.nix @@ -32,11 +32,11 @@ } { name = "domain-name"; - data = "bula.entr0py.cloud"; + data = "bula22.de"; } ]; } ]; }; }; -} \ No newline at end of file +} diff --git a/hosts/pre-router/router.nix b/hosts/pre-router/router.nix index c3cf062..5825066 100644 --- a/hosts/pre-router/router.nix +++ b/hosts/pre-router/router.nix @@ -21,11 +21,11 @@ ens18.useDHCP = true; # Handle the VLANs ens19 = { - ipv4.addresses = [{ - address = "10.42.10.1"; - prefixLength = 24; - }]; + ipv4.addresses = [ + { address = "10.42.10.1"; prefixLength = 24; } + { address = "10.42.10.25"; prefixLength = 24; } + ]; }; }; }; -} \ No newline at end of file +}