From c7b3cb740219e166c17a4c2e552cb7d229d4c4c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 22 Feb 2025 13:12:16 +0100 Subject: [PATCH] Fix open-webui service warning --- hosts/gunter/ollama.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/gunter/ollama.nix b/hosts/gunter/ollama.nix index 4b6da19..6697f98 100644 --- a/hosts/gunter/ollama.nix +++ b/hosts/gunter/ollama.nix @@ -20,4 +20,5 @@ # Ensure networking is ok before starting systemd.services.open-webui.after = [ "network-online.target" ]; + systemd.services.open-webui.wants = [ "network-online.target" ]; }