From 26779d9142417f52403e99d7fe6d5a6ecdb18aad Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 31 Aug 2023 20:29:14 +0900 Subject: [PATCH] test --- nixos/common/services/tailscale.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/common/services/tailscale.nix b/nixos/common/services/tailscale.nix index d5fc8cdc..4127689f 100644 --- a/nixos/common/services/tailscale.nix +++ b/nixos/common/services/tailscale.nix @@ -4,9 +4,9 @@ enable = true; interfaceName = "tailscale0"; extraUpFlags = [ - login-server='https://headscale.sysctl.io' - accept-dns - accept-routes + "--login-server='https://headscale.sysctl.io'" + "--accept-dns" + "--accept-routes" ]; }; networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 22 ];