treewide: add missing systemd ordering directives
Eval nix flake / evals (push) Successful in 6m28s
Eval nix flake / evals (pull_request) Successful in 7m5s

In particular, we were missing `sops-install-secrets.service` in a ton
of places, and `network-online.target` for some homebrewn services.

This has caused failure of some services on machine startup.
This commit is contained in:
2026-07-22 17:38:28 +09:00
parent 9a837d210d
commit 384534bf86
27 changed files with 200 additions and 56 deletions
+4 -2
View File
@@ -159,7 +159,6 @@ in
description = "Out of Your Element - a Discord bridge for Matrix.";
wants = [
"network-online.target"
"matrix-synapse.service"
"conduit.service"
"dendrite.service"
@@ -168,7 +167,10 @@ in
"matrix-ooye-pre-start.service"
"network-online.target"
];
requires = [ "matrix-ooye-pre-start.service" ];
requires = [
"network-online.target"
"matrix-ooye-pre-start.service"
];
wantedBy = [ "multi-user.target" ];
startLimitIntervalSec = 5;