From 5a402ad1abb9eed0f0bb21ae799aab35abc5d690 Mon Sep 17 00:00:00 2001 From: Jan Kremer Date: Thu, 5 Feb 2026 14:17:55 +0100 Subject: [PATCH] tailscale: Disable serve --- modules/nixos/tailscale.nix | 40 ++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/modules/nixos/tailscale.nix b/modules/nixos/tailscale.nix index 2cb303a..90c63b2 100644 --- a/modules/nixos/tailscale.nix +++ b/modules/nixos/tailscale.nix @@ -5,26 +5,26 @@ useRoutingFeatures = "both"; extraUpFlags = [ "--ssh" ]; - serve = { - enable = true; - services = { - cloud = { - endpoints = { - "tcp:443" = "https://localhost:3923"; - }; - }; - jellyfin = { - endpoints = { - "tcp:443" = "https://localhost:8096"; - }; - }; - photos = { - endpoints = { - "tcp:443" = "https://localhost:2283"; - }; - }; - }; - }; + # serve = { + # enable = true; + # services = { + # cloud = { + # endpoints = { + # "tcp:443" = "https://localhost:3923"; + # }; + # }; + # jellyfin = { + # endpoints = { + # "tcp:443" = "https://localhost:8096"; + # }; + # }; + # photos = { + # endpoints = { + # "tcp:443" = "https://localhost:2283"; + # }; + # }; + # }; + # }; }; networking = {