Merge pull request #315380 from lucasew/20240528-fix-loki

nixos/loki: add network.target to after
This commit is contained in:
Sandro 2024-06-10 13:47:21 +02:00 committed by GitHub
commit b8d6d611c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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