reNixos/s0melapt0p-nix/xdg/portal.nix
s0me1newithhand7s 909ddb64ec
treewide/xdg: portal fix
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-07-26 11:33:15 +03:00

27 lines
573 B
Nix

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