Here’s what to do while you wait for developers to add native ARM support for the x86 apps you know and love, such as Homebrew (which should be getting support soon).
Use “arch” to run commands in the native Terminal
You can run x86 terminal commands with Apple’s Rosetta 2 by adding the following arch command before it:
arch -x86_64 /bin/bash
So to install Homebrew, run the following:
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/in...)"
You can read more about this