lol

Merge pull request #225785 from helsinki-systems/warn-dhcpd-eol

nixos/dhcpd: warn of pending removal

authored by

Martin Weinelt and committed by
GitHub
7a5a2fa8 175667e8

+7
+7
nixos/modules/services/networking/dhcpd.nix
··· 218 218 219 219 systemd.services = dhcpdService "4" cfg4 // dhcpdService "6" cfg6; 220 220 221 + warnings = [ 222 + '' 223 + The dhcpd4 and dhcpd6 modules will be removed from NixOS 23.11, because ISC DHCP reached its end of life. 224 + See https://www.isc.org/blogs/isc-dhcp-eol/ for details. 225 + Please switch to a different implementation like kea, systemd-networkd or dnsmasq. 226 + '' 227 + ]; 221 228 }; 222 229 223 230 }