From 6d68d9181b238e3b2ec6a43b85c205c12a6185b7 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Fri, 13 Aug 2021 00:11:19 -0400 Subject: [PATCH] only include linux systems supported by nixpkgs/hydra in forAllSystems --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d1de203..38d3d57 100644 --- a/flake.nix +++ b/flake.nix @@ -29,7 +29,7 @@ getHosts = import lib/hosts.nix; forAllSystems = f: builtins.listToAttrs (map (name: { inherit name; value = f name; }) - (nixpkgs.lib.platforms.all) + [ "aarch64-linux" "i686-linux" "x86_64-linux" ] ); };