nixos/ollama: make host example dualstack wildcard

Binding to IPv6 wildcard generally binds dual-stack, which is also a
better example because the way to specify it is not always very clear.
This commit is contained in:
Martin Weinelt
2024-07-22 14:51:40 +02:00
parent bd473ceae3
commit fe58e8856f
+1 -1
View File
@@ -70,7 +70,7 @@ in
host = lib.mkOption {
type = types.str;
default = "127.0.0.1";
example = "0.0.0.0";
example = "[::]";
description = ''
The host address which the ollama server HTTP interface listens to.
'';