0
2
mirror of https://github.com/dali99/nixos-matrix-modules.git synced 2026-06-23 00:17:57 +02:00

synapse: wait for network-online.target

This commit is contained in:
2026-06-22 15:24:47 +09:00
parent f426b65172
commit e909fe8a91
+2 -1
View File
@@ -462,7 +462,8 @@ in
systemd = {
targets.matrix-synapse = {
description = "Matrix synapse parent target";
after = [ "network.target" ];
after = [ "network-online.target" ];
requires = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
};