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

15 lines
406 B
Nix
Raw Normal View History

2023-12-02 00:46:56 +01:00
{ pkgs, ... }: {
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;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
2023-04-27 01:08:20 +02:00
};
environment.systemPackages = [ pkgs.xdg-utils ];
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
}