diff --git a/sys/include/net/gnrc/ipv6.h b/sys/include/net/gnrc/ipv6.h
index 9113d887f6c57ff201db3b429a1b05dcf51cfede..c8e16745a465bf50c5ed9a1df27070aff2af6fd2 100644
--- a/sys/include/net/gnrc/ipv6.h
+++ b/sys/include/net/gnrc/ipv6.h
@@ -46,6 +46,13 @@
 extern "C" {
 #endif
 
+
+/**
+ * @defgroup    net_gnrc_ipv6_conf  GNRC IPv6 compile configurations
+ * @ingroup     net_gnrc_ipv6
+ * @ingroup     config
+ * @{
+ */
 /**
  * @brief   Default stack size to use for the IPv6 thread
  */
@@ -85,6 +92,7 @@ extern "C" {
  */
 #define GNRC_IPV6_STATIC_LLADDR
 #endif /* DOXYGEN */
+/** @} */
 
 /**
  * @brief   The PID to the IPv6 thread.
diff --git a/sys/include/net/gnrc/ipv6/blacklist.h b/sys/include/net/gnrc/ipv6/blacklist.h
index 43a1a159bb2272cc6bc840c13f6fbcc93c3c052f..d0d63542421f455465f023fbc0041b166356aabc 100644
--- a/sys/include/net/gnrc/ipv6/blacklist.h
+++ b/sys/include/net/gnrc/ipv6/blacklist.h
@@ -30,12 +30,19 @@
 extern "C" {
 #endif
 
+/**
+ * @defgroup    net_gnrc_ipv6_blacklist_conf GNRC IPv6 address blacklisting compile configurations
+ * @ingroup     net_gnrc_ipv6_blacklist
+ * @ingroup     config
+ * @{
+ */
 /**
  * Maximum size of the blacklist.
  */
 #ifndef GNRC_IPV6_BLACKLIST_SIZE
 #define GNRC_IPV6_BLACKLIST_SIZE    (8)
 #endif
+/** @} */
 
 /**
  * @brief   Adds an IPv6 address to the blacklist.
diff --git a/sys/include/net/gnrc/ipv6/nib/conf.h b/sys/include/net/gnrc/ipv6/nib/conf.h
index b26c0e68dc9b26377c0b4bff580a6a3bc85b15d5..ae6251aa24dc8a0c590c2609d3ec7a9eea03bf51 100644
--- a/sys/include/net/gnrc/ipv6/nib/conf.h
+++ b/sys/include/net/gnrc/ipv6/nib/conf.h
@@ -7,8 +7,9 @@
  */
 
 /**
- * @defgroup    net_gnrc_ipv6_nib_conf  Configuration macros
+ * @defgroup    net_gnrc_ipv6_nib_conf  GNRC IPv6 NIB compile configurations
  * @ingroup     net_gnrc_ipv6_nib
+ * @ingroup     config
  * @brief       Configuration macros for neighbor information base
  * @{
  *
diff --git a/sys/include/net/gnrc/ipv6/whitelist.h b/sys/include/net/gnrc/ipv6/whitelist.h
index f67cc9decae274aa6f39a299c91f862874ad44af..009160ab340f35dea49533a61579b3148b2f002a 100644
--- a/sys/include/net/gnrc/ipv6/whitelist.h
+++ b/sys/include/net/gnrc/ipv6/whitelist.h
@@ -28,12 +28,19 @@
 extern "C" {
 #endif
 
+/**
+ * @defgroup    net_gnrc_ipv6_whitelist_conf GNRC IPv6 address whitelisting compile configurations
+ * @ingroup     net_gnrc_ipv6_whitelist
+ * @ingroup     config
+ * @{
+ */
 /**
  * Maximum size of the whitelist.
  */
 #ifndef GNRC_IPV6_WHITELIST_SIZE
 #define GNRC_IPV6_WHITELIST_SIZE    (8)
 #endif
+/** @} */
 
 /**
  * @brief   Adds an IPv6 address to the whitelist.