nixos-config/modules/tools.nix
Simon Bruder 9a65a81c3c
tools: Only enable adb on x86_64-linux
Since it at least fails to build on aarch64.
2021-01-06 23:40:52 +01:00

8 lines
137 B
Nix

{
programs = {
adb.enable = builtins.currentSystem == "x86_64-linux";
bandwhich.enable = true;
iotop.enable = true;
};
}