From 8f36d1fbf5b38fb7e7c06ab601e70bac2dfcd5a5 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Thu, 25 May 2023 12:05:30 -0400 Subject: [PATCH] Revert Package Limitation --- flake.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index d6838ad..fbf495e 100644 --- a/flake.nix +++ b/flake.nix @@ -30,11 +30,9 @@ ]; in { lib = attributesToAttrset overlayAttributes.wrong; - packages = pkgs.lib.optionalAttrs - (system == "x86_64-linux" ) (attributesToAttrset overlayAttributes.right); + packages = attributesToAttrset overlayAttributes.right; hydraJobs = pkgs.lib.optionalAttrs (system == "x86_64-linux" ) self.packages; - } )); }