{ config, lib, ... }: let cfg = config.homelab.dns; in { options.homelab.dns = { enable = lib.mkOption { type = lib.types.bool; default = true; description = "Include this host in DNS zone generation"; }; cnames = lib.mkOption { type = lib.types.listOf lib.types.str; default = [ ]; description = "CNAME records pointing to this host"; example = [ "web" "api" ]; }; }; }