fix(nix-hm): ensure c libs are correctly found on path

This is necessary for Arch
This commit is contained in:
Price Hiller 2024-01-01 07:47:55 -06:00
parent 8f8038e51e
commit e908a27884
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -35,6 +35,7 @@ in
yamllint yamllint
curl curl
llvm llvm
llvmPackages.libcxxStdenv
openssh openssh
openssl openssl
wget wget
@ -52,6 +53,7 @@ in
fzf fzf
delta delta
eza eza
nixd
luajit luajit
ripgrep ripgrep
fd fd
@ -69,6 +71,10 @@ in
direnv direnv
passage passage
swappy swappy
openssl
glibc
openssl.dev
glibc.static
]; ];
@ -92,6 +98,8 @@ in
sessionVariables = { sessionVariables = {
GTK_THEME = "Kanagawa-Borderless"; GTK_THEME = "Kanagawa-Borderless";
QT_QPA_PLATFORMTHEME = "${gtkStyle}"; QT_QPA_PLATFORMTHEME = "${gtkStyle}";
LD_LIBRARY_PATH = "${config.home.homeDirectory}/.nix-profile/lib";
PKG_CONFIG_PATH = "${config.home.homeDirectory}/.nix-profile/lib/pkgconfig";
}; };
}; };