lol

nixos/tests: Fix delegated prefix in prefix-delegation test

Prefix/pool validation since kea 2.4.0 is now complaining about
overlapping and not properly aligned prefix lengths.

+3 -3
+3 -3
nixos/tests/systemd-networkd-ipv6-prefix-delegation.nix
··· 67 67 interfaces-config.interfaces = [ "eth1" ]; 68 68 subnet6 = [ { 69 69 interface = "eth1"; 70 - subnet = "2001:DB8:F::/36"; 70 + subnet = "2001:DB8::/32"; 71 71 pd-pools = [ { 72 - prefix = "2001:DB8:F::"; 72 + prefix = "2001:DB8:1000::"; 73 73 prefix-len = 36; 74 74 delegated-len = 48; 75 75 } ]; 76 76 pools = [ { 77 - pool = "2001:DB8:0000:0000:FFFF::-2001:DB8:0000:0000:FFFF::FFFF"; 77 + pool = "2001:DB8:0000:0000::-2001:DB8:0FFF:FFFF::FFFF"; 78 78 } ]; 79 79 } ]; 80 80