tailscale: add --no-logs-no-support daemon flag

This commit is contained in:
wo2wz 2025-10-27 16:23:56 -04:00
parent 1f48073c50
commit fbc2fb3586

View file

@ -1,5 +1,8 @@
{ config, ... }: { config, ... }:
{ {
services.tailscale.enable = true; services.tailscale = {
enable = true;
extraDaemonFlags = [ "--no-logs-no-support" ];
};
} }