add aarch64-linux as supported system in flake.nix

This commit is contained in:
Tobias Happ 2021-12-06 18:21:55 +01:00
parent d6e9ebcc11
commit 43964c4008

View File

@ -24,7 +24,7 @@
let
inherit (gitignore.lib) gitignoreSource;
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system:
import nixpkgs {