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 00:06:31 +02:00
parent bd473ceae3
commit fe58e8856f
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

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.
'';