1
Fork 0
satellite/hosts/nixos/common/optional/xdg-portal.nix
2023-04-27 15:36:14 +02:00

11 lines
279 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" ];
}