Connecting to hassio via university wifi

Hi im currently trying to install hassio onto a raspberry pi 3, my university has strict wifi access.
We are giving a tutorial on how to connect to the wifi if I were running linux(using wpa_supplicant.conf file)
Im trying to change this file setup in order to connect using the hassio connection setup e.g with CONFIG/network/my-network.

wpa_supplicant file
country=GB
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
    ssid="eduroam"
    key_mgmt=WPA-EAP
    eap=PEAP TTLS
    phase2="auth=MSCHAPV2"
    identity="[email protected]"
    password="your password in double quotes"
    pairwise=CCMP
}

The example for hassio connection is :

my-network
[connection]
id=my-network
uuid=72111c67-4a5d-4d5c-925e-f8ee26efb3c3
type=802-11-wireless

[802-11-wireless]
mode=infrastructure
ssid=MY_SSID
# Uncomment below if your SSID is not broadcasted
#hidden=true

[802-11-wireless-security]
auth-alg=open
key-mgmt=wpa-psk
psk=MY_WLAN_SECRET_KEY

[ipv4]
method=auto

[ipv6]
addr-gen-mode=stable-privacy
method=auto

I have got it to work running an old version of hassbian and installing everything through raspbian stretch, I’m wondering if I can easily connect to the wifi directly with hassio installation without having to install raspbian stretch.
Thanks