13 lines
325 B
Nix
13 lines
325 B
Nix
{ pkgs, lib, ... }: {
|
|
xdg.portal = {
|
|
enable = true;
|
|
xdgOpenUsePortal = true;
|
|
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
};
|
|
|
|
# HACK: copied from @lily on discord.
|
|
systemd.user.services.xdg-desktop-portal.path = lib.mkAfter [ "/run/current-system/sw" ];
|
|
|
|
services.gnome.at-spi2-core.enable = true;
|
|
}
|