From 766dc4c3835f7b81f7c23e3bacba1ce6092d4969 Mon Sep 17 00:00:00 2001 From: K900 Date: Fri, 19 Jul 2024 12:03:55 +0300 Subject: [PATCH] Mimir also wants network-online.target Thank you helpful eval warning --- services/monitoring/lgtm/mimir.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/services/monitoring/lgtm/mimir.nix b/services/monitoring/lgtm/mimir.nix index 335bd2d..14a67a2 100644 --- a/services/monitoring/lgtm/mimir.nix +++ b/services/monitoring/lgtm/mimir.nix @@ -89,6 +89,7 @@ in # Mimir tries to determine its own IP address for gossip purposes, # even when it's the only instance, and fails if it can't find one. # Avoid that by ensuring it starts after the network is set up. + wants = [ "network-online.target" ]; after = ["network-online.target"]; serviceConfig.EnvironmentFile = [ config.age.secrets.mimir-environment.path ]; };