18 lines
276 B
Nix
18 lines
276 B
Nix
{ pkgs, ... }:
|
|
{
|
|
xdg.portal = {
|
|
enable = true;
|
|
xdgOpenUsePortal = true;
|
|
config = {
|
|
common.default = [ "gtk" ];
|
|
hyprland.default = [
|
|
"gtk"
|
|
"hyprland"
|
|
];
|
|
};
|
|
extraPortals = [
|
|
pkgs.xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
}
|