Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
332 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ lib, ... }:
{
options = {
host = lib.mkOption {
type = lib.types.str;
example = "127.0.0.1";
description = ''
Server host address.
'';
};
port = lib.mkOption {
type = lib.types.port;
example = 5088;
description = ''
Server host port.
'';
};
};
}