nix: deprecate x86_64-darwin platform support in flake

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Id14e6ee7c53adb4e01febe84f357f3026a6a6964
This commit is contained in:
raf 2026-05-09 20:12:47 +03:00
commit 86d457b389
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -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 {