From ef056c7af9eadae4f567a6579866aea507b10196 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 27 May 2024 17:43:31 +0000 Subject: [PATCH] fix(nix/hm/price): ensure `sqlite` libs are in `LD_LIBRARY_PATH` --- users/price/home.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/users/price/home.nix b/users/price/home.nix index 78529146..b08d725a 100644 --- a/users/price/home.nix +++ b/users/price/home.nix @@ -150,7 +150,10 @@ in sessionVariables = { TERMINFO_DIRS = "${config.home.homeDirectory}/.nix-profile/share/terminfo"; WSLENV = "TERMINFO_DIRS"; - LD_LIBRARY_PATH = lib.strings.makeLibraryPath [ "${config.home.homeDirectory}/.nix-profile/" ]; + LD_LIBRARY_PATH = lib.strings.makeLibraryPath [ + "${config.home.homeDirectory}/.nix-profile/" + "${pkgs.sqlite.out}" + ]; PKG_CONFIG_PATH = "${config.home.homeDirectory}/.nix-profile/lib/pkgconfig"; GTK_PATH = "${pkgs.gtk-engine-murrine}/lib/gtk-2.0"; };