From 9a65a81c3ce2a308755acf260947e697cd3ad0c4 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Wed, 6 Jan 2021 23:40:52 +0100 Subject: [PATCH] tools: Only enable adb on x86_64-linux Since it at least fails to build on aarch64. --- modules/tools.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tools.nix b/modules/tools.nix index a96f4ff..e38e8cb 100644 --- a/modules/tools.nix +++ b/modules/tools.nix @@ -1,6 +1,6 @@ { programs = { - adb.enable = true; + adb.enable = builtins.currentSystem == "x86_64-linux"; bandwhich.enable = true; iotop.enable = true; };