From c00f818acb65f8f29e162b11af7ca5daa2fbc824 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sun, 17 Mar 2024 21:11:18 -0400 Subject: [PATCH] nix-ld change --- system/profile/base.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/system/profile/base.nix b/system/profile/base.nix index 86eab3a..c2be1e1 100644 --- a/system/profile/base.nix +++ b/system/profile/base.nix @@ -34,7 +34,13 @@ in nixpkgs.config.allowUnfree = true; # this allows non-NixOS binaries to run on NixOS. - programs.nix-ld.enable = true; + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ + # don't know if i need this right now but i'm saving it for later + # libstdcxx5 + ]; + }; # networking.hostName = "nixos"; # Define your hostname. # Pick only one of the below networking options.