nixos/loki: Start Loki after the network comes online (#311991)

This commit is contained in:
Wolfgang Walther
2024-12-03 21:22:42 +01:00
committed by GitHub

View File

@@ -93,6 +93,8 @@ in {
systemd.services.loki = {
description = "Loki Service Daemon";
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];