flake/nixos/packages/graphical/xdg.nix
2023-09-19 08:17:43 +08:00

10 lines
No EOL
178 B
Nix

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