nixos-config/modules/nixld.nix

20 lines
268 B
Nix
Raw Permalink Normal View History

2023-11-21 22:38:49 +00:00
{ config, pkgs, ... }: {
# Enable nix ld
programs.nix-ld.enable = true;
# Sets up all the libraries to load
programs.nix-ld.libraries = with pkgs; [
stdenv.cc.cc
zlib
fuse3
icu
zlib
nss
openssl
curl
expat
# ...
];
}