forked from DGNum/colmena
flake.nix: Cherry pick supported platforms
This commit is contained in:
parent
4a31a01c4f
commit
14f6c707f5
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@
|
|||
};
|
||||
|
||||
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
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
in rec {
|
||||
|
|
Loading…
Reference in a new issue