{ config, pkgs ,lib ,... }: with lib; { imports = [ (mkRenamedOptionModule [ "services" "flatpak" "extraPortals" ] [ "xdg" "portal" "extraPortals" ]) ]; options.xdg.portal = { enable = mkEnableOption "xdg desktop integration"//{ default = false; }; extraPortals = mkOption { type = types.listOf types.package; default = []; description = '' List of additional portals to add to path. Portals allow interaction with system, like choosing files or taking screenshots. At minimum, a desktop portal implementation should be listed. GNOME and KDE already adds xdg-desktop-portal-gtk; and xdg-desktop-portal-kde respectively. On other desktop environments you probably want to add them yourself. ''; }; gtkUsePortal = mkOption { type = types.bool; default = false; description = '' Sets environment variable GTK_USE_PORTAL to 1. This is needed for packages ran outside Flatpak to respect and use XDG Desktop Portals. For example, you'd need to set this for non-flatpak Firefox to use native filechoosers. Defaults to false to respect its opt-in nature. ''; }; }; config = let cfg = config.xdg.portal; packages = [ pkgs.xdg-desktop-portal ] ++ cfg.extraPortals; joinedPortals = pkgs.symlinkJoin { name = "xdg-portals"; paths = cfg.extraPortals; }; in mkIf cfg.enable { assertions = [ { assertion = (cfg.gtkUsePortal -> cfg.extraPortals != []); message = "Setting xdg.portal.gtkUsePortal to true requires a portal implementation in xdg.portal.extraPortals such as xdg-desktop-portal-gtk or xdg-desktop-portal-kde."; } ]; services.dbus.packages = packages; systemd.packages = packages; environment.variables = { GTK_USE_PORTAL = mkIf cfg.gtkUsePortal "1"; XDG_DESKTOP_PORTAL_DIR = "${joinedPortals}/share/xdg-desktop-portal/portals"; }; }; }