16 lines
266 B
Nix
16 lines
266 B
Nix
|
{ 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
|
||
|
];
|
||
|
};
|
||
|
}
|