wayland: niri: add xdg portal

This commit is contained in:
Bloxx12 2025-06-04 08:29:36 +02:00
commit 2c8ed668ca
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -25,5 +25,17 @@ in {
environment.systemPackages = builtins.attrValues { environment.systemPackages = builtins.attrValues {
inherit (pkgs) xwayland-satellite avizo; inherit (pkgs) xwayland-satellite avizo;
}; };
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
config = {
common.default = ["*"];
hyprland.default = ["gtk"];
};
};
}; };
} }