From 798c3d20d385274073fbabcaf4ec85ef2ccb531f Mon Sep 17 00:00:00 2001 From: bloominstrong Date: Mon, 2 Dec 2024 21:16:50 +1000 Subject: [PATCH] nixos/kea: fix settings example As of 2.6.0 subnet-ids need to be provided in the setitngs, adding that to the dhcp{4,6}.settings example --- nixos/modules/services/networking/kea.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/networking/kea.nix b/nixos/modules/services/networking/kea.nix index 8a145c37a61f..33e578cadc97 100644 --- a/nixos/modules/services/networking/kea.nix +++ b/nixos/modules/services/networking/kea.nix @@ -115,6 +115,7 @@ in name = "/var/lib/kea/dhcp4.leases"; }; subnet4 = [ { + id = 1; subnet = "192.0.2.0/24"; pools = [ { pool = "192.0.2.100 - 192.0.2.240"; @@ -176,6 +177,7 @@ in name = "/var/lib/kea/dhcp6.leases"; }; subnet6 = [ { + id = 1; subnet = "2001:db8:1::/64"; pools = [ { pool = "2001:db8:1::1-2001:db8:1::ffff";