tools/adb: Use proper way to determine if x86_64
This commit is contained in:
parent
d8b8e5de93
commit
428e8103d9
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue