From fe58e8856f206406a9b988e70b1f383cbb3ea331 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 22 Jul 2024 00:06:31 +0200 Subject: [PATCH] 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. --- nixos/modules/services/misc/ollama.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/ollama.nix b/nixos/modules/services/misc/ollama.nix index 7d0b66c4f8a2..07031a082344 100644 --- a/nixos/modules/services/misc/ollama.nix +++ b/nixos/modules/services/misc/ollama.nix @@ -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. '';