tools/adb: Use proper way to determine if x86_64

pull/30/head
Simon Bruder 2021-01-20 16:40:36 +01:00
parent d8b8e5de93
commit 428e8103d9
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
{ config, ... }:
{ config, pkgs, ... }:
{
programs = {
adb.enable = builtins.currentSystem == "x86_64-linux" && config.sbruder.full;
adb.enable = pkgs.stdenv.isx86_64 && config.sbruder.full;
bandwhich.enable = true;
iotop.enable = true;
};