flake.nix: Cherry pick supported platforms

This commit is contained in:
Zhaofeng Li 2021-12-06 12:46:46 -08:00
parent 4a31a01c4f
commit 14f6c707f5

View file

@ -12,7 +12,8 @@
}; };
outputs = { self, nixpkgs, utils, ... }: let outputs = { self, nixpkgs, utils, ... }: let
supportedSystems = utils.lib.defaultSystems; # We aren't testing against Darwin at the moment
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
in utils.lib.eachSystem supportedSystems (system: let in utils.lib.eachSystem supportedSystems (system: let
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
in rec { in rec {