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
1 changed files with 2 additions and 2 deletions

View File

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