1
Fork 0
satellite/hosts/nixos/common/optional/xdg-portal.nix

13 lines
357 B
Nix
Raw Normal View History

2023-04-27 01:08:20 +02:00
{ pkgs, lib, ... }: {
2023-05-24 03:17:09 +02:00
services.dbus.enable = true;
2023-04-27 01:08:20 +02:00
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
2023-04-27 15:36:14 +02:00
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
2023-04-27 01:08:20 +02:00
};
# HACK: copied from @lily on discord.
systemd.user.services.xdg-desktop-portal.path = lib.mkAfter [ "/run/current-system/sw" ];
2023-05-24 03:17:09 +02:00
# services.gnome.at-spi2-core.enable = true;
2023-04-27 01:08:20 +02:00
}