From a489d0f20ff2e2c7c8198faf846a39ff72cfd52f Mon Sep 17 00:00:00 2001 From: blake Date: Sat, 4 Oct 2025 12:52:10 -0500 Subject: [PATCH] add ld fix --- hosts/snowbelle/configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/snowbelle/configuration.nix b/hosts/snowbelle/configuration.nix index 98c6c4c..03def9c 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -72,6 +72,14 @@ # allow proprietary packages nixpkgs.config.allowUnfree = true; + # ld fix + programs.nix-ld.enable = true; + programs.nix-ld.libraries = with pkgs; [ + # Add any missing dynamic libraries for unpackaged + # programs here, NOT in environment.systemPackages + ]; + + # enable flakes nix.settings.experimental-features = [ "nix-command" "flakes" ];