Make description more precise about accepted format

This commit is contained in:
Astro 2024-03-11 23:06:05 +01:00
parent eeb9ec7de3
commit 492575a245

View File

@ -32,12 +32,12 @@ in
nets = { nets = {
v4 = lib.mkOption { v4 = lib.mkOption {
type = with lib.types; listOf str; type = with lib.types; listOf str;
description = "Own IPv4 net"; description = "Own IPv4 networks, list of CIDR";
}; };
v6 = lib.mkOption { v6 = lib.mkOption {
type = with lib.types; listOf str; type = with lib.types; listOf str;
description = "Own IPv6 net"; description = "Own IPv6 networks, list of CIDR";
}; };
}; };