about summary refs log tree commit diff stats
path: root/sys/svcs/xdg/default.nix
blob: 004e3b4c0683c2b690123b0e4a3c1ae86769828f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  pkgs,
  sysLib,
  ...
}: {
  services.dbus.enable = true;
  xdg = {
    portal = {
      enable = true;
      termfilechooser = {
        enable = true;
        settings = {
          filechooser = {
            cmd = "${sysLib.writeShellScriptWithLibraryAndKeepPath {
              name = "lf_wrapper";
              src = ./scripts/lf_wrapper;
              dependencies = with pkgs; [
                lf
              ];
            }}";
          };
        };
      };
      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 = {};
}