mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
14 lines
207 B
Nix
14 lines
207 B
Nix
{
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkOption;
|
|
in {
|
|
options.services.lidarr = with lib.types; {
|
|
port = mkOption {
|
|
type = port;
|
|
default = 8686;
|
|
readOnly = true;
|
|
};
|
|
};
|
|
}
|