From 35145243bdcf5e8bb340ad1533db9bd5ae11e0d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sun, 22 Oct 2023 20:14:25 +0300 Subject: [PATCH] tailscaled: silence logs by default it works. --- hosts/fra1-a/configuration.nix | 5 +---- hosts/fwminex/configuration.nix | 5 +---- hosts/vno1-oh2/configuration.nix | 1 + hosts/vno3-rp3b/configuration.nix | 5 +---- modules/services/tailscale/default.nix | 2 +- 5 files changed, 5 insertions(+), 13 deletions(-) diff --git a/hosts/fra1-a/configuration.nix b/hosts/fra1-a/configuration.nix index f4c5230..9a9ca7a 100644 --- a/hosts/fra1-a/configuration.nix +++ b/hosts/fra1-a/configuration.nix @@ -44,10 +44,7 @@ services = { node_exporter.enable = true; sshguard.enable = true; - tailscale = { - enable = true; - silenceLogs = true; - }; + tailscale.enable = true; postfix = { enable = true; diff --git a/hosts/fwminex/configuration.nix b/hosts/fwminex/configuration.nix index 67829d0..04aa058 100644 --- a/hosts/fwminex/configuration.nix +++ b/hosts/fwminex/configuration.nix @@ -72,15 +72,12 @@ in { services = { sshguard.enable = false; + tailscale.enable = true; node_exporter = { enable = true; extraSubnets = [myData.subnets.vno1.cidr]; }; - tailscale = { - enable = true; - silenceLogs = true; - }; deployerbot = { follower = { diff --git a/hosts/vno1-oh2/configuration.nix b/hosts/vno1-oh2/configuration.nix index 3a6ba29..450327a 100644 --- a/hosts/vno1-oh2/configuration.nix +++ b/hosts/vno1-oh2/configuration.nix @@ -154,6 +154,7 @@ ]; } ]; + tailscale.enable = true; node_exporter.enable = true; gitea.enable = true; diff --git a/hosts/vno3-rp3b/configuration.nix b/hosts/vno3-rp3b/configuration.nix index 125434a..3c993b8 100644 --- a/hosts/vno3-rp3b/configuration.nix +++ b/hosts/vno3-rp3b/configuration.nix @@ -65,12 +65,9 @@ }; services = { + tailscale.enable = true; node_exporter.enable = true; sshguard.enable = true; - tailscale = { - enable = true; - silenceLogs = true; - }; certget = { enable = true; diff --git a/modules/services/tailscale/default.nix b/modules/services/tailscale/default.nix index d946641..aaad3a2 100644 --- a/modules/services/tailscale/default.nix +++ b/modules/services/tailscale/default.nix @@ -12,7 +12,7 @@ in { # https://github.com/tailscale/tailscale/issues/1548 silenceLogs = mkOption { type = bool; - default = false; + default = true; }; };