From 1de3ec7bf118cf9fd4a48799dcc580f18b242769 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar <3998+srid@users.noreply.github.com> Date: Sat, 30 Apr 2022 16:28:48 -0400 Subject: [PATCH] nix: Allow M1 At least `nix run` works on `aarch64-darwin`. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0ebc1d28..0cc0c140 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,7 @@ }; outputs = { self, hls, nixpkgs, flake-utils, ... }: - flake-utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin"] (system: let + flake-utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin" "aarch64-darwin"] (system: let pkgs = import nixpkgs { inherit system;