{pkgs, lib, config, system, ...}: let inherit (lib) types; in { options.networking = { domainBase = lib.mkOption { type = types.str; description = "Base network name."; example = "example"; }; domainAliases = lib.mkOption { type = types.listOf types.str; description = "Domain aliases."; default = []; example = [ "example.org" "example.net" ]; }; }; }