Talk:Slack

From NixOS Wiki
Revision as of 00:15, 30 March 2022 by imported>Luisfelipemourapereira (Created page with "Hello, It seems that using xdg = { portal = { enable = true; extraPortals = with pkgs; [ xdg-desktop-portal-wlr xdg-desktop-portal-gtk ]; gtkUs...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Hello,

It seems that using

xdg = {

 portal = {
   enable = true;
   extraPortals = with pkgs; [
     xdg-desktop-portal-wlr
     xdg-desktop-portal-gtk
   ];
   gtkUsePortal = true;
 };

};

results in some conflict errors. I am using wayland and

xdg = {

 portal = {
   enable = true;
   extraPortals = with pkgs; [
     xdg-desktop-portal-wlr
   ];
   gtkUsePortal = true;
 };

};

seems to work. should we update the docs?