Files
cnix/nixos/core/xdg.nix
2024-07-31 09:22:34 +02:00

15 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
];
};
}