9 lines
189 B
Nix
9 lines
189 B
Nix
{ config, pkgs, ...}:
|
|
{
|
|
xdg.portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
# gtk portal needed to make gtk apps happy
|
|
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
};
|
|
}
|