Talk:Slack: Difference between revisions

From NixOS Wiki
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..."
 
imported>RemcoSchrijver
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 27: Line 27:


seems to work.  should we update the docs?
seems to work.  should we update the docs?
==== Deprecated options ====
Other question, it seems that <nowiki>xdg.portal.gtkUsePortal</nowiki> is deprecated right now, what would be a valid fix for this?

Latest revision as of 19:33, 21 March 2024

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?

Deprecated options

Other question, it seems that xdg.portal.gtkUsePortal is deprecated right now, what would be a valid fix for this?