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 + ]; }; }; }