From b8b3de9afa5702301887836f8b4da794c95db935 Mon Sep 17 00:00:00 2001 From: Juan Ibiapina Date: Mon, 27 Jan 2025 22:22:39 +0100 Subject: [PATCH] nix: Fix nvim-server --- nix/packages/nvim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/packages/nvim.nix b/nix/packages/nvim.nix index 16aaf6d..c7abfd1 100644 --- a/nix/packages/nvim.nix +++ b/nix/packages/nvim.nix @@ -42,7 +42,7 @@ in nvim-server = writeShellApplication { name = "nvim-server"; text = '' - cwd_hash=$(echo -n "$PWD" | md5) + cwd_hash=$(echo -n "$PWD" | ${pkgs.outils}/bin/md5) socket_path="/tmp/nvim.$cwd_hash" ${wrapped}/bin/nvim --listen "$socket_path" "$@"