diff options
Diffstat (limited to 'sys/svcs/xdg')
-rw-r--r-- | sys/svcs/xdg/default.nix | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/svcs/xdg/default.nix b/sys/svcs/xdg/default.nix index 243c7c9d..95afaf51 100644 --- a/sys/svcs/xdg/default.nix +++ b/sys/svcs/xdg/default.nix @@ -10,11 +10,14 @@ termfilechooser = { enable = true; settings = { - cmd = sysLib.writeShellScriptWithLibraryAndKeepPath { - name = "lf_wrapper"; - src = ./scripts/lf_wrapper; - dependencies = with pkgs; [ - ]; + filechooser = { + cmd = "${sysLib.writeShellScriptWithLibraryAndKeepPath { + name = "lf_wrapper"; + src = ./scripts/lf_wrapper; + dependencies = with pkgs; [ + lf + ]; + }}"; }; }; }; |