From 2335d67f8d85b7013f90dcc8bfebc5f5db11c2f8 Mon Sep 17 00:00:00 2001 From: Rph Date: Wed, 16 Apr 2025 18:45:46 +0200 Subject: [PATCH] add x86 to supported macintoshes --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d39e68c..0f78760 100644 --- a/flake.nix +++ b/flake.nix @@ -42,7 +42,7 @@ buildInputs = with pkgs; [ (rust-bin.stable.latest.default.override { extensions = [ "rust-src" ]; - targets = ["aarch64-apple-darwin" ]; + targets = ["aarch64-apple-darwin" "x86_64-apple-darwin"]; }) cargo-bloat ] ++ native-deps;