15 lines
249 B
Nix
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
|
||
|
];
|
||
|
};
|
||
|
}
|