From a518edc5cb2528090dd35fde52c4990cdd11676a Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Mon, 18 Nov 2024 12:02:08 -0700 Subject: [PATCH] pwntie: fix ollama options --- hosts/pwntie/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/pwntie/default.nix b/hosts/pwntie/default.nix index 9c88a10..8e3d07a 100644 --- a/hosts/pwntie/default.nix +++ b/hosts/pwntie/default.nix @@ -90,7 +90,8 @@ in ollama = { enable = true; acceleration = "rocm"; - listenAddress = "localhost:${toString oLlamaPort}"; + host = "localhost"; + port = oLlamaPort; }; prometheus = { enable = true;