NiksOS/system/programs/xdg.nix
2025-02-14 19:40:27 +00:00

14 lines
249 B
Nix

{pkgs, ...}: {
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
config = {
common.default = ["gtk"];
hyprland.default = ["gtk" "hyprland"];
};
extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
};
}