Loading nixos/modules/services/networking/tailscale.nix +9 −0 Original line number Diff line number Diff line Loading @@ -44,6 +44,12 @@ in description = "Whether to disable the Taildrop feature for sending files between nodes."; }; disableUpstreamLogging = mkOption { default = false; type = types.bool; description = "Whether to disable Tailscaled from sending debug logging upstream."; }; package = lib.mkPackageOption pkgs "tailscale" { }; openFirewall = mkOption { Loading Loading @@ -154,6 +160,9 @@ in ]) ++ (lib.optionals (cfg.disableTaildrop) [ "TS_DISABLE_TAILDROP=true" ]) ++ (lib.optionals (cfg.disableUpstreamLogging) [ "TS_NO_LOGS_NO_SUPPORT=true" ]); # Restart tailscaled with a single `systemctl restart` at the # end of activation, rather than a `stop` followed by a later Loading Loading
nixos/modules/services/networking/tailscale.nix +9 −0 Original line number Diff line number Diff line Loading @@ -44,6 +44,12 @@ in description = "Whether to disable the Taildrop feature for sending files between nodes."; }; disableUpstreamLogging = mkOption { default = false; type = types.bool; description = "Whether to disable Tailscaled from sending debug logging upstream."; }; package = lib.mkPackageOption pkgs "tailscale" { }; openFirewall = mkOption { Loading Loading @@ -154,6 +160,9 @@ in ]) ++ (lib.optionals (cfg.disableTaildrop) [ "TS_DISABLE_TAILDROP=true" ]) ++ (lib.optionals (cfg.disableUpstreamLogging) [ "TS_NO_LOGS_NO_SUPPORT=true" ]); # Restart tailscaled with a single `systemctl restart` at the # end of activation, rather than a `stop` followed by a later Loading