2017-11-16 18:21:02 +00:00
|
|
|
{ lib, ... }:
|
|
|
|
{ options = {
|
|
|
|
host = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
example = "127.0.0.1";
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2017-11-16 18:21:02 +00:00
|
|
|
Server host address.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
port = lib.mkOption {
|
|
|
|
type = lib.types.int;
|
|
|
|
example = 5088;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2017-11-16 18:21:02 +00:00
|
|
|
Server host port.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|