mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-28 12:06:38 +03:00
20 lines
331 B
Nix
20 lines
331 B
Nix
![]() |
{ lib, ... }:
|
||
|
{
|
||
|
options = {
|
||
|
host = lib.mkOption {
|
||
|
type = lib.types.str;
|
||
|
example = "127.0.0.1";
|
||
|
description = ''
|
||
|
Server host address.
|
||
|
'';
|
||
|
};
|
||
|
port = lib.mkOption {
|
||
|
type = lib.types.int;
|
||
|
example = 5088;
|
||
|
description = ''
|
||
|
Server host port.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|