tools: Only enable adb on x86_64-linux

Since it at least fails to build on aarch64.
This commit is contained in:
Simon Bruder 2021-01-06 23:40:52 +01:00
parent 83ec18b7e4
commit 9a65a81c3c
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -1,6 +1,6 @@
{ {
programs = { programs = {
adb.enable = true; adb.enable = builtins.currentSystem == "x86_64-linux";
bandwhich.enable = true; bandwhich.enable = true;
iotop.enable = true; iotop.enable = true;
}; };