blob: 51035a41a599cdf85624cc032476c27a808ce9a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, ... }:
{
xdg.portal = {
enable = true;
config.common.default = "*";
extraPortals = with pkgs; [
xdg-desktop-portal-hyprland
xdg-desktop-portal-gtk
];
};
}
|