flake.nix: use systems with only linux that can be cross-built

This commit is contained in:
Astro 2022-09-14 22:37:23 +02:00
parent 4b7910de61
commit 674d382ba9
1 changed files with 5 additions and 1 deletions

View File

@ -8,7 +8,11 @@
};
outputs = { self, nixpkgs, flake-utils, affection-src }:
flake-utils.lib.eachDefaultSystem (system:
flake-utils.lib.eachSystem [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
] (system:
let
pkgs = nixpkgs.legacyPackages.${system};