about summary refs log blame commit diff stats
path: root/sys/svcs/xdg/default.nix
blob: 4f6db4a184bc1082a03ff1145935ddf8949d9b25 (plain) (tree)
1
2
3
4
5
              
                              

                    












                                                                                     
        
      
                    
 
{pkgs, ...}: {
  services.dbus.enable = true;
  xdg = {
    portal = {
      enable = true;
      config = {
        common = {
          # NOTE: The next entry is supposedly needed for gtk based apps <2023-08-31>
          default = ["gtk"];
        };

        # TODO: Also activate, when on another wlr-based compositor <2023-11-25>
        river = {
          default = ["wlr"];
        };
      };
      extraPortals = with pkgs; [
        xdg-desktop-portal-gtk
        xdg-desktop-portal-wlr
      ];
    };
  };
  # TODO: mime = {};
}