From d80949932c05a4001b217b2bdf12fa6416fa49df Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Mon, 7 Oct 2024 11:01:11 +0100 Subject: [PATCH] fix(flake.nix): add `SystemConfiguration` for Darwin --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index dccdd6c..2b4600f 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ openssl dbus sqlite - ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; + ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security SystemConfiguration ]); package = with pkgs; rustPlatform.buildRustPackage rec {