From 1a4e8de70f9bb385eb7824b0e78d3721bf127886 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Fri, 28 Apr 2023 10:06:55 +0100 Subject: [PATCH] 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. --- nixos/syndicate-server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/syndicate-server.nix b/nixos/syndicate-server.nix index 38aff0b..7d11e8c 100644 --- a/nixos/syndicate-server.nix +++ b/nixos/syndicate-server.nix @@ -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;