lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nixos/livekit: use `types.port`

h7x4 71fb838c 58836456

+2 -2
+2 -2
nixos/modules/services/networking/livekit.nix
··· 85 85 86 86 rtc = { 87 87 port_range_start = lib.mkOption { 88 - type = lib.types.int; 88 + type = lib.types.port; 89 89 default = 50000; 90 90 description = "Start of UDP port range for WebRTC"; 91 91 }; 92 92 93 93 port_range_end = lib.mkOption { 94 - type = lib.types.int; 94 + type = lib.types.port; 95 95 default = 51000; 96 96 description = "End of UDP port range for WebRTC"; 97 97 };