Jump to content

Talk:Jetbrains Tools

From Official NixOS Wiki
Latest comment: 30 August by Gcoakes in topic Native embeddings-server live hang

Native embeddings-server live hang

In GoLand and presumably the other IDEs, anything that performs an embeddings search such as "Search Anywhere" or "AI Chat" will stall for some extended duration (felt like ~1min) before continuing without the semantic search results. It is resolved with the following code block:

```nix

    # Enable the nix-ld packages for JetBrains embeddings-server.

    programs.nix-ld = {

      enable = true;

      libraries = with pkgs; [

        stdenv.cc.cc.lib

        zlib

        glib

        openssl

      ];

    };

```

Because GoLand appears to download this executable at runtime, it might be pretty difficult to patch properly without nix-ld.

Just figured I would save others the few hours it took for me to fix this. Gcoakes (talk) 12:39, 30 August 2026 (UTC)Reply