flake.nix: restrict systems

This commit is contained in:
Astro 2022-05-26 03:51:24 +02:00
parent 7b4f31c8f9
commit 2315849168
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
};
outputs = { self, nixpkgs, utils, fenix, naersk }:
utils.lib.eachDefaultSystem (system: let
utils.lib.eachSystem (with utils.lib.system; [ x86_64-linux aarch64-linux ]) (system: let
pkgs = nixpkgs.legacyPackages."${system}";
rust = fenix.packages.${system}.complete.withComponents [