diff options
Diffstat (limited to 'sys/svcs/xdg')
-rw-r--r-- | sys/svcs/xdg/default.nix | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/svcs/xdg/default.nix b/sys/svcs/xdg/default.nix index 95afaf51..57d915b3 100644 --- a/sys/svcs/xdg/default.nix +++ b/sys/svcs/xdg/default.nix @@ -7,20 +7,20 @@ xdg = { portal = { enable = true; - termfilechooser = { - enable = true; - settings = { - filechooser = { - cmd = "${sysLib.writeShellScriptWithLibraryAndKeepPath { - name = "lf_wrapper"; - src = ./scripts/lf_wrapper; - dependencies = with pkgs; [ - lf - ]; - }}"; - }; - }; - }; + # termfilechooser = { + # enable = false; + # settings = { + # filechooser = { + # cmd = "${sysLib.writeShellScriptWithLibraryAndKeepPath { + # name = "lf_wrapper"; + # src = ./scripts/lf_wrapper; + # dependencies = with pkgs; [ + # lf + # ]; + # }}"; + # }; + # }; + # }; config = { common = { # NOTE: The next entry is supposedly needed for gtk based apps <2023-08-31> @@ -35,7 +35,7 @@ extraPortals = with pkgs; [ xdg-desktop-portal-gtk xdg-desktop-portal-wlr - xdg-desktop-portal-termfilechooser + # xdg-desktop-portal-termfilechooser ]; }; }; |