Qduino Mini and Micro OLED via SPI interface

Yes, your assignments are correct for SCK and MOSI. But RST of the display should be routed to any GPIO pin, same as D/C and CS, not to the reset line of the processor. You will need to change the #defines in the example programs to match your configuration since they default to an Uno pinout. Look for these lines:

#define PIN_RESET 9 // Connect RST to pin 9 (SPI & I2C)
#define PIN_DC 8 // Connect DC to pin 8 (SPI only)
#define PIN_CS 10 // Connect CS to pin 10 (SPI only)

and change the pin numbers to those you’ve used.