1 {pkgs, lib, config, system, ...}:
2 let inherit (lib) types;
5 domainBase = lib.mkOption {
7 description = "Base network name.";
10 domainAliases = lib.mkOption {
11 type = types.listOf types.str;
12 description = "Domain aliases.";
14 example = [ "example.org" "example.net" ];