flake/nixos/packages/graphical/xdg.nix

8 lines
174 B
Nix

{pkgs, ...}: {
# XDG portal
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [xdg-desktop-portal-gtk]; # disable if on gnome
};
}