* Hey guys. I am trying to get screen sharing working with firefox and sway, but it does not seem to work. I get a xdg desktop portal timeout with my current configuration. Have anyone online got this working? :) This is a snip from my config: ``` # pipewire stuff security.rtkit.enable = true; services.pipewire = { enable = true; pulse.enable = true; }; xdg = { portal = { enable = true; extraPortals = with pkgs; [ xdg-desktop-portal-wlr xdg-desktop-portal-gtk ]; gtkUsePortal = true; }; }; environment.sessionVariables = { MOZ_ENABLE_WAYLAND = "1"; XDG_CURRENT_DESKTOP = "sway"; XDG_SESSION_TYPE = "wayland"; }; ```