nixos/syndicate-server: do not restart or reload

Do not restart or reload a syndicate server service if anything
changes. The server should handle this on its own and spurious
restarts should be prevented if possible.
This commit is contained in:
Emery Hemingway 2023-04-28 10:06:55 +01:00
parent 30b8b5f0af
commit 1a4e8de70f
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ with lib;
in {
description = "Syndicate dataspace server";
restartIfChanged = false;
reloadTriggers = [ configFile ];
reloadIfChanged = false;
wantedBy = [ "multi-user.target" ];
} // (if builtins.match "tty[0-9]" name == null then {
inherit serviceConfig;