From c934e25fc1283277eeb02c07567ed6d652a25a5e Mon Sep 17 00:00:00 2001 From: sdaqo Date: Fri, 26 Jul 2024 15:52:32 +0200 Subject: [PATCH] misc: improve nix shell --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index b3fa0583..ea8cbe86 100644 --- a/shell.nix +++ b/shell.nix @@ -3,6 +3,7 @@ let pkgs = import nixpkgs { config = {}; overlays = []; }; in pkgs.mkShell { + LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib/:/run/opengl-driver/lib/"; packages = with pkgs; [ python3 (poetry.override { python3 = python3; })