From 5c2be8a0781b906a19f3195fac4a4c6152cc4494 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 23 May 2023 14:16:53 -0400 Subject: [PATCH] Only Package x86-64 For now --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 78ff54b..2928fff 100644 --- a/flake.nix +++ b/flake.nix @@ -26,7 +26,8 @@ ]; in { lib = attributesToAttrset overlayAttributes.wrong; - packages = attributesToAttrset overlayAttributes.right; + packages = pkgs.lib.optionalAttrs + (system == "x86_64-linux" ) (attributesToAttrset overlayAttributes.right); hydraJobs = pkgs.lib.optionalAttrs (system == "x86_64-linux" ) self.packages;