From d5ffef1fd98e6c24381957743d0cce564fe13f02 Mon Sep 17 00:00:00 2001 From: Max Niederman Date: Wed, 24 Apr 2024 23:25:41 -0700 Subject: [PATCH] build: disable darwin systems in flake --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index f63d239..e5c4a79 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,7 @@ }; outputs = { self, nixpkgs, flake-utils, crate2nix, rust-overlay }: - flake-utils.lib.eachDefaultSystem (system: + flake-utils.lib.eachSystem ["x86_64-linux" "aarch64-linux"] (system: let pkgs = import nixpkgs { inherit system;