1{ lib, ... }: 2{ 3 options = { 4 host = lib.mkOption { 5 type = lib.types.str; 6 example = "127.0.0.1"; 7 description = '' 8 Server host address. 9 ''; 10 }; 11 port = lib.mkOption { 12 type = lib.types.port; 13 example = 5088; 14 description = '' 15 Server host port. 16 ''; 17 }; 18 }; 19}