Skip to content

Commit

Permalink
Add more supported systems
Browse files Browse the repository at this point in the history
  • Loading branch information
Velnbur committed Jan 20, 2024
1 parent 8c16edd commit 990e8ab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 990e8ab

Please sign in to comment.