nix: Allow M1

At least `nix run` works on `aarch64-darwin`.
This commit is contained in:
Sridhar Ratnakumar 2022-04-30 16:28:48 -04:00 committed by GitHub
parent 27753904f4
commit 1de3ec7bf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;