From e7920b5237b144c8d88ccc448681de32c790b27b Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Thu, 6 Jan 2022 23:53:55 +0100 Subject: [PATCH] feat(nix): add darwin support in flake not enabling it in ihaskell make nix flake check fail for jupyterWith --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1b4c1e6e..c3cc0ef8 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,7 @@ }; outputs = { self, hls, nixpkgs, flake-utils, ... }: - flake-utils.lib.eachSystem ["x86_64-linux"] (system: let + flake-utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin"] (system: let pkgs = import nixpkgs { inherit system;