diff options
author | Brian Picciano <me@mediocregopher.com> | 2024-08-08 11:53:45 +0200 |
---|---|---|
committer | Brian Picciano <me@mediocregopher.com> | 2024-08-08 11:53:45 +0200 |
commit | e3e13e890616da9947c5391d0b78ab695f1ae122 (patch) | |
tree | fe1211ae64896df79bdeea706a08e5458e9fa118 /awesome | |
parent | dd47b35a43d4f49716112391b49f00a78702c459 (diff) |
Don't set LD_LIBRARY_PATH in awesome anymore
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
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} ''; |