diff --git a/modules/tools.nix b/modules/tools.nix index a50b7b3..1b952ab 100644 --- a/modules/tools.nix +++ b/modules/tools.nix @@ -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; };