blob: 297928ce04c72814a966639fec97beb3bb0ce2dd (
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 = {};
}
|