This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/services/xdg-portal/default.nix

9 lines
192 B
Nix

{pkgs, ...}: {
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
wlr.enable = false; #conflict with XDPH if enabled
extraPortals = [pkgs.xdg-desktop-portal-gtk];
};
}