From 58aaecf4361faecca1247eee08ccba4654656ce5 Mon Sep 17 00:00:00 2001 From: Minijackson Date: Thu, 19 Dec 2024 15:03:58 +0100 Subject: [PATCH] flake: add x86_64-darwin as supported system --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index bb3ab07..46a0870 100644 --- a/flake.nix +++ b/flake.nix @@ -83,7 +83,7 @@ # Not eachDefaultSystem right now, because `nix flake check` tries to # build every derivation of every system, which fails. # Waiting on: https://github.com/NixOS/nix/pull/7759 - (flake-utils.lib.eachSystem ["x86_64-linux"] systemDependentOutputs) + (flake-utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin"] systemDependentOutputs) // { overlays.default = overlay;