feat: Add some libraries into nix-ld

This commit is contained in:
ulic-youthlic 2025-09-17 00:25:17 +08:00
parent 1c240dcf08
commit e8a9d45a76
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721

View file

@ -1,6 +1,7 @@
{
config,
lib,
pkgs,
...
}:
let
@ -15,16 +16,17 @@ in
config = lib.mkIf cfg.enable {
programs.nix-ld = {
enable = true;
# libraries = with pkgs; [
# stdenv.cc.cc
# zlib
# fuse3
# icu
# nss
# openssl
# curl
# expat
# ];
libraries = with pkgs; [
stdenv.cc.cc
zlib
fuse3
icu
nss
openssl
curl
expat
rustls-libssl
];
};
};
}