Talk:Slack: Difference between revisions

From NixOS Wiki
imported>Mindtheegab
No edit summary
imported>Mindtheegab
No edit summary
Line 27: Line 27:


seems to work.  should we update the docs?
seems to work.  should we update the docs?
#different issue
im getting this using the advised environment option
warning: The option `xdg.portal.gtkUsePortal' defined in `/etc/nixos/software.nix' has been deprecated. Setting the variable globally with `environment.sessionVariables' NixOS option can have unforeseen side-effects.

Revision as of 11:12, 28 June 2023

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?