From ac2a607d711c840b83e22b4e5db00e475444f267 Mon Sep 17 00:00:00 2001 From: Mikael Voss Date: Wed, 21 Jan 2026 17:47:41 +0100 Subject: [PATCH] nixos/tuwunel: set systemd service type to notify tuwunel uses service manager notification to signal readiness and allow configuration reloading. --- nixos/modules/services/matrix/tuwunel.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/matrix/tuwunel.nix b/nixos/modules/services/matrix/tuwunel.nix index b3a66017734c..1c760c6293cb 100644 --- a/nixos/modules/services/matrix/tuwunel.nix +++ b/nixos/modules/services/matrix/tuwunel.nix @@ -216,6 +216,8 @@ in startLimitBurst = 5; startLimitIntervalSec = 60; serviceConfig = { + Type = "notify"; + DynamicUser = true; User = cfg.user; Group = cfg.group;