From 279e4b6004a705bfba133760d6b9d88a57365246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 22 Feb 2025 13:10:47 +0100 Subject: [PATCH] Ensure open-webui waits for network before starting --- hosts/gunter/ollama.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/gunter/ollama.nix b/hosts/gunter/ollama.nix index 809636f..4b6da19 100644 --- a/hosts/gunter/ollama.nix +++ b/hosts/gunter/ollama.nix @@ -17,4 +17,7 @@ }; port = 11444; }; + + # Ensure networking is ok before starting + systemd.services.open-webui.after = [ "network-online.target" ]; }