From 44e954461679ecc1aab98111aa33310320da3a28 Mon Sep 17 00:00:00 2001 From: NexVeridian Date: Sun, 1 Jun 2025 19:20:02 -0700 Subject: [PATCH] openssl --- nix/flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nix/flake.nix b/nix/flake.nix index 59bf532..d217187 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -97,10 +97,12 @@ libiconv openssl pkg-config + cargo-nextest cargo-insta cargo-edit cargo-update + cargo-binstall sea-orm-cli bacon zola @@ -191,6 +193,11 @@ # Necessary for using flakes on this system. nix.settings.experimental-features = "nix-command flakes"; + # Configure environment variables for OpenSSL + environment.variables = { + LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [ openssl ]; + }; + # Enable alternative shell support in nix-darwin. programs.zsh.enable = true; # programs.fish.enable = true;