infrastructure/modules/nixos/sonarr.nix
2024-01-24 13:02:02 -08:00

14 lines
207 B
Nix

{
lib,
...
}: let
inherit (lib.options) mkOption;
in {
options.services.sonarr = with lib.types; {
port = mkOption {
type = port;
default = 8989;
readOnly = true;
};
};
}