From e7bb6fc6764fe9c6eec8533b3e69720051df7b68 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Wed, 17 Jul 2024 23:02:15 -0400 Subject: [PATCH] hosts: enable tailscale ssh --- hosts/common/network.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/common/network.nix b/hosts/common/network.nix index 1da7ce37..bfa343de 100644 --- a/hosts/common/network.nix +++ b/hosts/common/network.nix @@ -50,7 +50,8 @@ services.tailscale = { enable = true; - openFirewall = true; authKeyFile = config.age.secrets.tailscaleAuthKey.path; + extraUpFlags = ["--ssh"]; + openFirewall = true; }; }