From e3e13e890616da9947c5391d0b78ab695f1ae122 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Thu, 8 Aug 2024 11:53:45 +0200 Subject: Don't set LD_LIBRARY_PATH in awesome anymore --- awesome/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'awesome') diff --git a/awesome/default.nix b/awesome/default.nix index acc6375..bc2b34b 100644 --- a/awesome/default.nix +++ b/awesome/default.nix @@ -106,14 +106,15 @@ EOF ''; awesome = pkgs.writeShellScriptBin "awesome" '' + set -x export XORGCONFIG=${xorgConf} # set the LD_LIBRARY_PATH to search both the libraries needed by X, but also # those on the host, so that the video driver has access to them if it needs # it. - source "${pkgs.ldUtils}" - x_ld_lib_path="$(bin_ld_lib_path "${pkgs.xorg.xinit}/bin/xinit")" - export LD_LIBRARY_PATH="$x_ld_lib_path":"$(host_ld_lib_path)" + #source "${pkgs.ldUtils}" + #x_ld_lib_path="$(bin_ld_lib_path "${pkgs.xorg.xinit}/bin/xinit")" + #export LD_LIBRARY_PATH="$x_ld_lib_path":"$(host_ld_lib_path)" exec startx ${awesomeInner} ''; -- cgit v1.2.3