From 3f19fe7f0a7e54f34eb46c6f0b511ffb7dfebfe8 Mon Sep 17 00:00:00 2001 From: sid Date: Wed, 15 Apr 2026 23:35:12 +0200 Subject: [PATCH 1/2] open-webui: disable ollama api --- hosts/rx4/services/open-webui-oci.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hosts/rx4/services/open-webui-oci.nix b/hosts/rx4/services/open-webui-oci.nix index c45ded4..b8c7027 100644 --- a/hosts/rx4/services/open-webui-oci.nix +++ b/hosts/rx4/services/open-webui-oci.nix @@ -13,10 +13,11 @@ externalUrl = "https://" + constants.services.open-webui-oci.fqdn; port = 8083; # environmentFile = config.sops.templates."open-webui-oci/environment".path; - # environment = { - # AUDIO_STT_ENGINE = "openai"; - # AUDIO_TTS_ENGINE = "openai"; - # }; + environment = { + # AUDIO_STT_ENGINE = "openai"; + # AUDIO_TTS_ENGINE = "openai"; + ENABLE_OLLAMA_API = "False"; + }; }; # sops = { -- 2.51.2 From 7ac1decd2ec58e4bbc4ff7aa1b0f15c50bf5fefb Mon Sep 17 00:00:00 2001 From: sid Date: Wed, 15 Apr 2026 23:47:31 +0200 Subject: [PATCH 2/2] open-webui: 0.8.5 -> 0.8.12 --- hosts/rx4/services/open-webui-oci.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/rx4/services/open-webui-oci.nix b/hosts/rx4/services/open-webui-oci.nix index b8c7027..d16c191 100644 --- a/hosts/rx4/services/open-webui-oci.nix +++ b/hosts/rx4/services/open-webui-oci.nix @@ -2,6 +2,7 @@ inputs, constants, config, + pkgs, ... }: @@ -10,6 +11,13 @@ services.open-webui-oci = { enable = true; + image = pkgs.dockerTools.pullImage { + imageName = "ghcr.io/open-webui/open-webui"; + imageDigest = "sha256:8113fa5510020ef05a44afc0c42d33eabeeb2524a996e3e3fb8c437c00f0d792"; + hash = "sha256-KxMUORhvLb/MMc8gv3xULNgnAzO1N+Qi2/1lHzbuK6Q="; + finalImageName = "ghcr.io/open-webui/open-webui"; + finalImageTag = "0.8.12"; + }; externalUrl = "https://" + constants.services.open-webui-oci.fqdn; port = 8083; # environmentFile = config.sops.templates."open-webui-oci/environment".path; -- 2.51.2