diff --git a/docs/on_boot_config.md b/docs/on_boot_config.md
index 5fcdc9fa..2829d5bb 100644
--- a/docs/on_boot_config.md
+++ b/docs/on_boot_config.md
@@ -91,18 +91,23 @@ A number of other parameters can be applied in the same way as with Wi-Fi.
* `WIFI_ESSID=foo`
`WIFI_PASSWD=bar`
Configures Wi-Fi with DHCP, described in more detail in previous paragrpah.
Both options must be set simultaneously to avoid incorrect configuration.
+ Can be followed by several options:
-* `WIFI_HIDDEN=1`
- Allows to connect to hidden Wi-Fi network. Available only on new images >= 2024.03.12.
+ * `WIFI_WPA23=1`
+ Allows to connect to mixed WPA2/WPA3 network. Available only on new images >= 2025.03.03.
+
+ * `WIFI_HIDDEN=1`
+ Allows to connect to hidden Wi-Fi network. Available only on new images >= 2024.03.12.
+
+ * `WIFI_ADDR=192.168.0.100/24`
`WIFI_DNS=8.8.8.8`
`WIFI_GW=192.168.0.1`
+ Configures a static IP on the Wifi. Only IPv4 is available here. For IPv6 you'll need to change
+ [systemd configuration files](https://wiki.archlinux.org/title/systemd-networkd) on the live OS.
+ All three options must be set simultaneously with `WIFI_ESSID` and `WIFI_PASSWD` to avoid incorrect configuration.
* `WIFI_REGDOM=US`
Changes Wi-Fi regulatory domain to the US. Other domains available by
[ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country codes.
-* `WIFI_ADDR=192.168.0.100/24`
`WIFI_DNS=8.8.8.8`
`WIFI_GW=192.168.0.1`
- Configures a static IP on the Wifi. Only IPv4 is available here. For IPv6 you'll need to change
- [systemd configuration files](https://wiki.archlinux.org/title/systemd-networkd) on the live OS.
- All three options must be set simultaneously with `WIFI_ESSID` and `WIFI_PASSWD` to avoid incorrect configuration.
-----