From 870be9d7b7c0775f8e2a1384b78d3c2d48b18c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 19 Nov 2023 09:23:13 +0100 Subject: [PATCH] limit evaluation to common architectures --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0180fa7..0202f94 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,14 @@ outputs = inputs@{ flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } ({ lib, ... }: { - systems = lib.systems.flakeExposed; + systems = [ + "aarch64-linux" + "x86_64-linux" + "riscv64-linux" + + "x86_64-darwin" + "aarch64-darwin" + ]; imports = [ inputs.treefmt-nix.flakeModule ./targets/flake-module.nix