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