From 32449bcc16b79d8fee764a07e3629f37a7f370ce Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 22 Sep 2025 15:53:58 +0200 Subject: [PATCH] nixos/livekit-ingress: use `types.port` --- nixos/modules/services/networking/livekit-ingress.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/livekit-ingress.nix b/nixos/modules/services/networking/livekit-ingress.nix index 260698a4b2b4..7aaf6d1397af 100644 --- a/nixos/modules/services/networking/livekit-ingress.nix +++ b/nixos/modules/services/networking/livekit-ingress.nix @@ -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"; };