fix: add default value for networkPrefix

This commit is contained in:
2025-04-29 10:13:44 +02:00
parent 036efd54c3
commit ddbc35c690

View File

@@ -69,7 +69,8 @@ in {
}; };
networkPrefix = lib.mkOption { networkPrefix = lib.mkOption {
type = lib.types.str; type = lib.types.str;
example = "10.42"; default = "10.10";
example = "10.10";
description = "First two octets of the network"; description = "First two octets of the network";
}; };
domain = lib.mkOption { domain = lib.mkOption {