reNixos/s0melapt0p-nix/xdg/portal.nix
s0me1newithhand7s e4e1b03c7e
treewide: upstreaming changes
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-10-24 21:03:46 +03:00

28 lines
589 B
Nix

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