{ lib, ... }: with lib; with types; { options.verify.closed = mkOption { default = { }; type = attrsOf (submodule { options = { domain = mkOption { type = str; description = '' domain to scan ''; }; ports = mkOption { type = listOf int; description = '' ports that should be closed ''; }; }; }); }; }