Patches the Electron asar bundle to inject setDisplayMediaRequestHandler with useSystemPicker: true, which routes screen capture through the native PipeWire/xdg-desktop-portal pipeline on Wayland. Based on upstream draft PR nextcloud/talk-desktop#1022. Uses the patched version in communication role.
11 lines
428 B
Nix
11 lines
428 B
Nix
{ pkgs, ... }:
|
|
{
|
|
tea-rbw = pkgs.callPackage ./tea-rbw {};
|
|
app-launcher-server = pkgs.callPackage ./app-launcher-server {};
|
|
claude-code = pkgs.callPackage ./claude-code {};
|
|
mcrcon-rbw = pkgs.callPackage ./mcrcon-rbw {};
|
|
rclone-torbox-setup = pkgs.callPackage ./rclone-torbox-setup {};
|
|
pi-coding-agent = pkgs.callPackage ./pi-coding-agent {};
|
|
nextcloud-talk-desktop = pkgs.callPackage ./nextcloud-talk-desktop {};
|
|
}
|