From d32667e46ca849857eaed2b587fa9595d93ce726 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 20 Jan 2024 14:23:05 -0800 Subject: [PATCH] nix: only linux is supported for the package --- nix/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/package.nix b/nix/package.nix index 62d28b934..3f3136553 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -159,6 +159,6 @@ in meta = with lib; { homepage = "https://github.com/mitchellh/ghostty"; license = licenses.mit; - platforms = ["x86_64-linux" "aarch64-linux" "aarch64-darwin"]; + platforms = ["x86_64-linux" "aarch64-linux"]; }; })