Attiny85 PWM frequency

I need to change the PWM frequency on a Attiny85

On my arduino uno (atmega328) i used this:
TCCR2B = TCCR2B & 0b11111000 | 0x01;

This gets me a 32kHz PWM on pin 3 & 11

Now a roughly want to do the same on a Attiny85. What command do I use to get a pwm signal that is higher then 22kHz on Pin 0?

I've been reading and googling a bit but it made my head spin...

Use TCCR0B instead.

From what I understand each timer has a base frequency.

On the atmega328 TCCR2B has a base frequency of 32kHz the prescaler (0x01) divides this frequency since 0x01 = 1 => this yields a frequency of 32kHz

Does TCCR0B also have a base freq of 32kHz on the attiny85?

So TCCR0B = TCCR0B & 0b11111000 | 0x01; should work?