blob: 2de640dda4b00e0c119046fe230e9652b2aec633 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{pkgs, ...}: {
services.dbus.enable = true;
xdg = {
portal = {
enable = true;
config = {
common = {
# NOTE: The next entry is supposedly needed for gtk based apps <2023-08-31>
default = ["gtk"];
};
# TODO: Also activate, when on another wlr-based compositor <2023-11-25>
river = {
default = ["wlr"];
};
};
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-wlr
# xdg-desktop-portal-termfilechooser
];
};
};
# TODO: mime = {};
}
|