nix: support additional platforms
Some checks are pending
Rust / build (push) Waiting to run

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ib2041c4c951e4b5870f9322534736a3f6a6a6964
This commit is contained in:
raf 2026-01-30 20:55:22 +03:00
commit 0996c763ef
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -5,7 +5,7 @@
self,
nixpkgs,
}: let
systems = ["x86_64-linux" "aarch64-linux"];
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
forEachSystem = nixpkgs.lib.genAttrs systems;
pkgsForEach = nixpkgs.legacyPackages;
in {