From fb308fc6d7788029ab9184cae6c85edd9a48f794 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Mon, 7 Oct 2024 19:15:01 -0700 Subject: [PATCH] fix: provide tinymist and websocat binaries directly to typst-preview --- config/plugins/setup.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/plugins/setup.nix b/config/plugins/setup.nix index a34832b..9982667 100644 --- a/config/plugins/setup.nix +++ b/config/plugins/setup.nix @@ -8,8 +8,8 @@ require 'typst-preview'.setup { dependencies_bin = { - ['typst-preview'] = ${pkgs.tinymist}, - ['websocat'] = ${pkgs.websocat} + ['typst-preview'] = "${pkgs.tinymist}/bin/tinymist", + ['websocat'] = "${pkgs.websocat}/bin/websocat" } }