diff options
author | Freya Murphy <freya@freyacat.org> | 2025-01-03 09:21:31 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-01-03 09:21:31 -0500 |
commit | 1c632d6245d2b84dd09aa483f8742840885ec87a (patch) | |
tree | 718ed33cc9e09ec8f7c45668893ce04a140d93b2 /home/nix/programs/nix-ld.nix | |
parent | refactor zprofile (diff) | |
download | dotfiles-guix-main.tar.gz dotfiles-guix-main.tar.bz2 dotfiles-guix-main.zip |
Diffstat (limited to '')
-rw-r--r-- | home/nix/programs/nix-ld.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/home/nix/programs/nix-ld.nix b/home/nix/programs/nix-ld.nix new file mode 100644 index 0000000..2b5d112 --- /dev/null +++ b/home/nix/programs/nix-ld.nix @@ -0,0 +1,15 @@ +{ 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 + ]; + }; +} |