From 438d49dc65f5931c5253af474d6d5e554df76362 Mon Sep 17 00:00:00 2001 From: William Date: Wed, 22 Apr 2026 19:07:00 -0300 Subject: [PATCH] logrotate check failing on trantor; quick workaround --- aspects/systems/server.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/aspects/systems/server.nix b/aspects/systems/server.nix index c3c24f0..04621a1 100644 --- a/aspects/systems/server.nix +++ b/aspects/systems/server.nix @@ -27,9 +27,12 @@ ]; }; - services.tailscale = { - extraSetFlags = [ "--advertise-exit-node" ]; - useRoutingFeatures = "server"; + services = { + tailscale = { + extraSetFlags = [ "--advertise-exit-node" ]; + useRoutingFeatures = "server"; + }; + logrotate.checkConfig = false; }; };