From aa267f52a25bf068fd371adad73dc24c705740c5 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 28 Dec 2022 15:09:30 +0100 Subject: [PATCH] enable nix flake on {aarch64,x86_64}-darwin --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index af25ba5c3..d9f0f1f0c 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ }; outputs = { self, nixpkgs, poetry2nix }@inputs: let - supportedSystems = [ "x86_64-linux" "aarch64-linux" ]; + supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; forSystems = systems: f: nixpkgs.lib.genAttrs systems (system: f system (import nixpkgs { inherit system; overlays = [ poetry2nix.overlay self.overlays.default ]; }));