From 656a5d6af2988476d9828c9baecf4f1a84396a8b Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 13 Mar 2022 02:06:23 +0100 Subject: [PATCH] Add aarch64-linux support I'd like to use dream2nix on an ARM64 machine. Passes `nix flake check`. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e7565908..2f526059 100644 --- a/flake.nix +++ b/flake.nix @@ -66,7 +66,7 @@ # dream2nix lib (system independent utils) dlib = import ./src/lib {inherit lib;}; - supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-darwin"]; + supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"]; forSystems = systems: f: lib.genAttrs systems