From 78ea0c64de4c5de609bce978e3ff6a0f362ccaf1 Mon Sep 17 00:00:00 2001 From: Emily Martins Date: Fri, 3 Jun 2022 23:36:25 +0200 Subject: [PATCH] flake: allow building on M1 --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index d425528..afa804b 100644 --- a/flake.nix +++ b/flake.nix @@ -67,8 +67,7 @@ outputs = inputs@{ self, nixpkgs, nixpkgs-latest, haskell-nix, plutarch, purescript-bridge, haskell-nix-extra-hackage, iohk-nix, ... }: let - supportedSystems = with nixpkgs.lib.systems.supported; - tier1 ++ tier2 ++ tier3; + supportedSystems = nixpkgs-latest.lib.systems.flakeExposed; perSystem = nixpkgs.lib.genAttrs supportedSystems;