Ensure open-webui waits for network before starting
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled

This commit is contained in:
2025-02-22 13:10:47 +01:00
parent 58c48fde71
commit 279e4b6004

View File

@@ -17,4 +17,7 @@
};
port = 11444;
};
# Ensure networking is ok before starting
systemd.services.open-webui.after = [ "network-online.target" ];
}