refactor(nix-hm): disable c libs/headers

This commit is contained in:
Price Hiller 2024-01-06 00:40:08 -06:00
parent 5210430cf0
commit dd8b9f4ace
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -34,8 +34,6 @@ in
ruby ruby
yamllint yamllint
curl curl
llvm
llvmPackages.libcxxStdenv
openssh openssh
openssl openssl
wget wget
@ -71,10 +69,14 @@ in
direnv direnv
passage passage
swappy swappy
openssl ] ++ [
glibc # gcc
openssl.dev # glibc
glibc.static # libgccjit
# openssl.dev
# glibc.static
# llvm
# llvmPackages.libcxxStdenv
]; ];
@ -98,8 +100,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"; # LD_LIBRARY_PATH = "${config.home.homeDirectory}/.nix-profile/lib";
PKG_CONFIG_PATH = "${config.home.homeDirectory}/.nix-profile/lib/pkgconfig"; # PKG_CONFIG_PATH = "${config.home.homeDirectory}/.nix-profile/lib/pkgconfig";
}; };
}; };