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