Unverified Commit 71e83d7b authored by abysssol's avatar abysssol Committed by GitHub
Browse files

nixos/ollama: add network-online.target to ollama-model-loader.service (#443374)

parents 9fdd26ca 5bdecea1
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -270,7 +270,11 @@ in
        "multi-user.target"
        "ollama.service"
      ];
      after = [ "ollama.service" ];
      wants = [ "network-online.target" ];
      after = [
        "ollama.service"
        "network-online.target"
      ];
      bindsTo = [ "ollama.service" ];
      environment = config.systemd.services.ollama.environment;
      serviceConfig = {