From 8a574bd152c637bc95c2d20c9e8fc370cd022673 Mon Sep 17 00:00:00 2001 From: Justin Restivo Date: Sat, 29 Jan 2022 16:45:36 -0500 Subject: [PATCH] Add darwin to architecture list --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b1302b5b..c2ca7b07 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ lib = nixpkgs.lib; - supportedSystems = [ "x86_64-linux" "x86_64-darwin" ]; + supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; forAllSystems = f: lib.genAttrs supportedSystems (system: f system (import nixpkgs { inherit system; overlays = [ self.overlay ]; })