1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 07:59:24 +03:00

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
commit ccaf4694a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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