From 990e8ab4a46bacc721cef1fee24dce4df220feb8 Mon Sep 17 00:00:00 2001 From: Velnbur Date: Sat, 20 Jan 2024 23:24:37 +0200 Subject: [PATCH] Add more supported systems --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index ef48541..0cc3292 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,10 @@ }; outputs = { self, flake-utils, nixpkgs, rust-overlay, cargo2nix, ... }: - flake-utils.lib.eachSystem [ "aarch64-linux" "aarch64-darwin" ] (system: + let + systems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; + in + flake-utils.lib.eachSystem systems (system: let pkgs = import nixpkgs { inherit system;