From 3d306f90945f7c5342a7e3e2a4988574f129204d Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Tue, 3 May 2022 19:09:25 -0400 Subject: [PATCH] nix: use eachDefaultSystem (to allow macOS M1) --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c885ce8..dad3990 100644 --- a/flake.nix +++ b/flake.nix @@ -6,7 +6,7 @@ inputs.flake-utils.url = "github:numtide/flake-utils"; outputs = { self, nixpkgs, flake-utils }@inputs: - flake-utils.lib.eachSystem [ "x86_64-linux" "x86_64-darwin" ] (system: + flake-utils.lib.eachDefaultSystem (system: let pkgs = import self { inherit system;