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

                    
                         
                      
                           
                         
                                 




                                                                    
                    
                               

            

                      

                                                                                     
                                                                          


                                                                                
                                                                          



                                 
                                          
        
      
                    
 
{
  pkgs,
  sysLib,
  ...
}: {
  services.dbus.enable = true;
  xdg = {
    portal = {
      enable = true;
      termfilechooser = {
        enable = true;
        logLevel = "TRACE";
        settings = {
          filechooser = {
            default_dir = "/tmp";
            cmd = "${sysLib.writeShellScriptWithLibraryAndKeepPath {
              src = ./scripts/lf_wrapper;
              name = "lf_wrapper";
              dependencies = with pkgs; [
                lf
                alacritty
                bash
              ];
            }}/bin/lf_wrapper";
          };
        };
      };
      wlr = {
        enable = true;
      };
      config = {
        common = {
          # NOTE: The next entry is supposedly needed for gtk based apps <2023-08-31>
          default = ["wlr" "gtk"];
          "org.freedesktop.impl.portal.FileChooser" = ["termfilechooser"];
        };

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