blob: bb29d20c65be3273526eff802ecaa51d05499d62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{pkgs, ...}: {
xdg = {
portal = {
enable = true;
# TODO only enable the below, when on river (or wlr based compositor)
wlr.enable = true;
extraPortals = [pkgs.xdg-desktop-portal-wlr];
};
};
# TODO mime = {};
}
|