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