21 lines
260 B
Nix
21 lines
260 B
Nix
|
{ pkgs, ... }: {
|
||
|
xdg.portal = {
|
||
|
enable = true;
|
||
|
extraPortals = with pkgs; [
|
||
|
xdg-desktop-portal-gtk
|
||
|
];
|
||
|
config = {
|
||
|
common = {
|
||
|
default = [
|
||
|
"gtk"
|
||
|
"wlr"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
wlr = {
|
||
|
enable = true;
|
||
|
};
|
||
|
xdgOpenUsePortal = true;
|
||
|
};
|
||
|
}
|