From 6265a18988bb8f3e322d7ca77edc52e4a982fa33 Mon Sep 17 00:00:00 2001 From: albert Date: Mon, 23 Dec 2024 21:03:03 +0100 Subject: [PATCH] Update Docker / Podman to allow Tailscale as a trusted netwoork --- nixos/common/services/docker.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/common/services/docker.nix b/nixos/common/services/docker.nix index 02fd4c3d..6b071dd5 100644 --- a/nixos/common/services/docker.nix +++ b/nixos/common/services/docker.nix @@ -11,7 +11,7 @@ # Allow Docker containers to access Tailscale network networking.firewall = { trustedInterfaces = [ "tailscale0" ]; - allowedUDP = [ 41641 ]; # Tailscale port + allowedUDPPorts = [ 41641 ]; # Tailscale port }; virtualisation.docker = {