diff --git a/docs/layer_configuration.md b/docs/layer_configuration.md
index 0ba7099..360fe9b 100644
--- a/docs/layer_configuration.md
+++ b/docs/layer_configuration.md
@@ -23,7 +23,8 @@ Vulkan supports intercepting or hooking API entry points via a layer framework.
 Vulkan layers allow application developers to add functionality to Vulkan applications without modifying the application itself, e.g., validating API usages, dumping API entry points or generating screenshots of specified frames.
 
 Vulkan layers can be configured using three different methods to match specific Vulkan developers' workflows:
-- Using the Vulkan API: `vkCreateInstance()` and `VK_EXT_layer_settings`.
+- Using the Vulkan API: `vkCreateInstance()` and the [VK_EXT_layer_settings](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_EXT_layer_settings.html) extension.
+    - `VK_EXT_layer_settings` is now an official extension as of `1.3.272`
 - Using the `vk_layer_settings.txt` file, that can be generated by the GUI interface called *[Vulkan Configurator](https://vulkan.lunarg.com/doc/sdk/latest/windows/vkconfig.html)*.
 - Using environment variables.