From c4d2b0b8d457a50631e799b40650c5020def8d74 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 17 Aug 2025 08:23:52 -0400 Subject: [PATCH] added lib.mkDefault tpo global environment --- common/global/libs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/global/libs.nix b/common/global/libs.nix index 42adfa8..18a97b0 100644 --- a/common/global/libs.nix +++ b/common/global/libs.nix @@ -32,7 +32,7 @@ in }; environment = { - sessionVariables.LD_LIBRARY_PATH = libPath; - variables.LD_LIBRARY_PATH = libPath; + sessionVariables.LD_LIBRARY_PATH = lib.mkDefault libPath; + variables.LD_LIBRARY_PATH = lib.mkDefault libPath; }; }