nixos/searx: move network.target from wantedBy to after (#422924)

This commit is contained in:
Michele Guerini Rocco
2025-07-06 17:00:46 +02:00
committed by GitHub
+5 -5
View File
@@ -252,12 +252,12 @@ in
systemd.services.searx = mkIf (!cfg.runInUwsgi) {
description = "Searx server, the meta search engine.";
wantedBy = [
"network.target"
"multi-user.target"
];
wantedBy = [ "multi-user.target" ];
requires = [ "searx-init.service" ];
after = [ "searx-init.service" ];
after = [
"searx-init.service"
"network.target"
];
serviceConfig =
{
User = "searx";