From 1272b2f0b35fd89da606c5ed7c78ed7e698ca1bf Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Fri, 20 Aug 2021 14:02:56 -0400 Subject: [PATCH] remove hardcoded list of architectures --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c23cd39..b1ca029 100644 --- a/flake.nix +++ b/flake.nix @@ -48,7 +48,7 @@ getHosts = import lib/hosts.nix; forAllSystems = f: builtins.listToAttrs (map (name: { inherit name; value = f name; }) - [ "aarch64-linux" "i686-linux" "x86_64-linux" ] + (builtins.attrNames nixpkgs.legacyPackages) ); };