nixos/livekit-ingress: use types.port

This commit is contained in:
h7x4
2025-09-22 16:33:00 +02:00
parent d594f74f75
commit 32449bcc16
@@ -71,13 +71,13 @@ in
rtc_config = {
port_range_start = lib.mkOption {
type = lib.types.int;
type = lib.types.port;
default = 50000;
description = "Start of UDP port range for WebRTC";
};
port_range_end = lib.mkOption {
type = lib.types.int;
type = lib.types.port;
default = 51000;
description = "End of UDP port range for WebRTC";
};