15 lines
244 B
Nix
15 lines
244 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
xdg.portal = {
|
||
|
enable = true;
|
||
|
xdgOpenUsePortal = true;
|
||
|
wlr.enable = true;
|
||
|
extraPortals = with pkgs; [xdg-desktop-portal-gtk];
|
||
|
configPackages = with pkgs; [gnome.gnome-session];
|
||
|
};
|
||
|
}
|