From b69e22270fc0e97272637094f2f800b0e939accf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 27 Oct 2023 11:04:05 +0200 Subject: [PATCH] disable aarch64-linux for now getting some weird setuptools import error --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 4f5ff93..6740723 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ imports = [ ./nix/checks/flake-module.nix ] ++ inputs.nixpkgs.lib.optional (inputs.treefmt-nix ? flakeModule) ./nix/treefmt/flake-module.nix; - systems = [ "x86_64-linux" "aarch64-linux" ]; + systems = [ "x86_64-linux" ]; flake = { nixosModules.buildbot-master = ./nix/master.nix; nixosModules.buildbot-worker = ./nix/worker.nix;