dotfiles-guix/home/nix/programs/nix-ld.nix
Freya Murphy 1c632d6245
Some checks failed
installer / build (push) Failing after 37m49s
refactor nix a bit
2025-01-03 09:21:31 -05:00

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