flake/nixos/packages/graphical/xdg.nix

9 lines
174 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-09-19 00:17:43 +00:00
# XDG portal
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [xdg-desktop-portal-gtk]; # disable if on gnome
2023-09-19 00:17:43 +00:00
};
}