From b782d746473fa554d969435e24d082472c3f2222 Mon Sep 17 00:00:00 2001 From: Cilly Leang Date: Wed, 17 Jun 2026 01:08:27 +1000 Subject: [PATCH] system/tailscale: correct wrong nat interface --- modules/system/tailscale.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/tailscale.nix b/modules/system/tailscale.nix index 5da4652..fe0e8bb 100644 --- a/modules/system/tailscale.nix +++ b/modules/system/tailscale.nix @@ -7,7 +7,7 @@ networking.nat = lib.mkIf (config.networking.hostName == "dandelion") { enable = true; externalInterface = "enp0s6"; - internalInterfaces = [ "tailscaled0" ]; + internalInterfaces = [ "tailscale0" ]; forwardPorts = [ { sourcePort = 50300;