reNixos/isla/xdg/portal.nix
s0me1newithhand7s 1a891252ab isla: upstream
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-03-25 18:49:27 +03:00

30 lines
481 B
Nix

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