From 4c621ef88639a125059848c6359b98f5b4a72333 Mon Sep 17 00:00:00 2001 From: lucasew Date: Tue, 28 May 2024 12:02:04 -0300 Subject: [PATCH] nixos/loki: add network.target to after Signed-off-by: lucasew --- nixos/modules/services/monitoring/loki.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/monitoring/loki.nix b/nixos/modules/services/monitoring/loki.nix index de4f1bc7aa23..307119ecbf8b 100644 --- a/nixos/modules/services/monitoring/loki.nix +++ b/nixos/modules/services/monitoring/loki.nix @@ -94,6 +94,7 @@ in { systemd.services.loki = { description = "Loki Service Daemon"; wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; serviceConfig = let conf = if cfg.configFile == null