From e8a9d45a76ea9a7204f7d9306cfee8bfad75e4c6 Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Wed, 17 Sep 2025 00:25:17 +0800 Subject: [PATCH] feat: Add some libraries into nix-ld --- nixos/modules/programs/nix-ld.nix | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/nixos/modules/programs/nix-ld.nix b/nixos/modules/programs/nix-ld.nix index 5a2e70f..733d5b6 100644 --- a/nixos/modules/programs/nix-ld.nix +++ b/nixos/modules/programs/nix-ld.nix @@ -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 + ]; }; }; }