Add After entries to Nix Module's service for the various dependant databases

This commit is contained in:
Lorwp
2025-01-26 10:24:13 +11:00
parent 854c8048a8
commit 07dfdd961d
+7
View File
@@ -153,6 +153,13 @@ in
];
restartIfChanged = false; # So that the TGS service doesn't just get restarted whenever it's updated, and boots players
wantedBy = [ "multi-user.target" ];
after = [
"network.target"
"mysql.service"
"mariadb.service"
"postgresql.service"
"mssql-server.service"
];
};
};
}