listOf, not list

This commit is contained in:
2025-08-16 21:15:20 -05:00
parent 7f10bede57
commit 410fae971f
+1 -1
View File
@@ -48,7 +48,7 @@
default-nginx = {
enable = lib.mkEnableOption "Enable nginx reverse proxy for MinIO";
hostname = lib.mkOption {
type = lib.types.list lib.types.str;
type = lib.types.listOf lib.types.str;
default = "localhost";
description = "Hostname for nginx reverse proxy.";
};