dotfiles-guix/home/nix/programs/nix-ld.nix

16 lines
266 B
Nix
Raw Normal View History

2025-01-03 14:21:31 +00:00
{ pkgs , ... }:
{
programs.nix-ld = {
# Enable Nix ld to allow precompiled executables not set for NixOS to run
enable = true;
# Sets up all the libraries to load
libraries = with pkgs; [
stdenv.cc.cc
zlib
openssl
];
};
}