From 86d457b389703ce0965bc61727030601d273e277 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 9 May 2026 20:12:47 +0300 Subject: [PATCH] nix: deprecate x86_64-darwin platform support in flake Signed-off-by: NotAShelf Change-Id: Id14e6ee7c53adb4e01febe84f357f3026a6a6964 --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c0b6769..d6b751f 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ self, nixpkgs, }: let - systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"]; + systems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin"]; forEachSystem = nixpkgs.lib.genAttrs systems; pkgsForEach = nixpkgs.legacyPackages; in {