From ddaf55fd08cafe659b18f4a9e33e1de74d0fa4f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 21 Jul 2023 14:00:52 +0200 Subject: [PATCH] flake: only expose nixpkgs-cached architectures --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9344ec68..3f0d8621 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,12 @@ outputs = inputs @ { flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } ({ lib, config, ... }: { - systems = lib.systems.flakeExposed; + systems = [ + "x86_64-linux" + "aarch64-linux" + "aarch64-darwin" + "x86_64-darwin" + ]; imports = [ ./flake-parts/packages.nix ./flake-parts/formatting.nix