22 lines
358 B
Nix
22 lines
358 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
config = lib.mkIf config.local.profiles.desktop.enable {
|
||
|
xdg.portal = {
|
||
|
enable = true;
|
||
|
xdgOpenUsePortal = true;
|
||
|
config = {
|
||
|
common.default = ["gtk"];
|
||
|
hyprland.default = ["gtk" "hyprland"];
|
||
|
};
|
||
|
|
||
|
extraPortals = [
|
||
|
pkgs.xdg-desktop-portal-gtk
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|