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