From 304231cabc9da074790a4d49cd6aa0583886187b Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Tue, 21 Nov 2023 13:32:07 +0100 Subject: [PATCH] sonarr: allow Tailscale net --- hosts/architect/sonarr.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/architect/sonarr.nix b/hosts/architect/sonarr.nix index 0c7b9d1..58a6b5b 100644 --- a/hosts/architect/sonarr.nix +++ b/hosts/architect/sonarr.nix @@ -9,12 +9,15 @@ in group = "media"; }; - architect.vhost.${domain} = { + architect.vhost.${domain} = with config.architect.networks; { dnsInterfaces = [ "tailscale" ]; locations."/" = { port = 8989; allowLan = true; + allow = [ + tailscale.net + ]; }; };