lol

nixos/go2rtc: add support for v4l2 video sources

Capturing from /dev/video* requires being member of the video group.

+4
+4
nixos/modules/services/video/go2rtc/default.nix
··· 103 103 serviceConfig = { 104 104 DynamicUser = true; 105 105 User = "go2rtc"; 106 + SupplementaryGroups = [ 107 + # for v4l2 devices 108 + "video" 109 + ]; 106 110 StateDirectory = "go2rtc"; 107 111 ExecStart = "${cfg.package}/bin/go2rtc -config ${configFile}"; 108 112 };