about summary refs log tree commit diff stats
path: root/modules/system/services/xdg/default.nix
blob: 5140a8320d686902522f6526d6b26fa385fdfaa9 (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
49
50
51
52
53
54
55
56
57
58
{
  pkgs,
  nixpkgs_open_prs,
  sysLib,
  system,
  ...
}: let
  pkgs_tfc = nixpkgs_open_prs.nixpkgs-tfc.legacyPackages."${system}";
in {
  services.dbus.enable = true;
  xdg = {
    portal = {
      enable = true;
      termfilechooser = {
        enable = true;
        logLevel = "TRACE";
        package = pkgs_tfc.xdg-desktop-portal-termfilechooser;
        settings = {
          filechooser = {
            default_dir = "/tmp";
            cmd = "${sysLib.writeShellScript {
              src = ./scripts/lf_wrapper.sh;
              name = "lf_wrapper";
              keepPath = true;
              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 = [
        pkgs.xdg-desktop-portal-gtk
        pkgs.xdg-desktop-portal-wlr
        pkgs_tfc.xdg-desktop-portal-termfilechooser
      ];
    };
  };
  # TODO: mime = {};
}