From 48f6453e6f86f4fcc49f2434779e6e7063485437 Mon Sep 17 00:00:00 2001 From: Daniel Wheeler Date: Fri, 21 Jun 2024 15:37:33 -0400 Subject: [PATCH] add aarch64-darwin to nix systems --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9cc7041126..1624c04bb2 100644 --- a/flake.nix +++ b/flake.nix @@ -6,7 +6,7 @@ utils.url = "github:numtide/flake-utils"; }; - outputs = { self, nixpkgs, utils}: (utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin" ] (system: + outputs = { self, nixpkgs, utils}: (utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin" "aarch64-darwin" ] (system: let pkgs = nixpkgs.legacyPackages.${system}; pypkgs = pkgs.python310Packages;