From d878a12f5b5c3d75007ef010d1a80d6a707d0fa1 Mon Sep 17 00:00:00 2001 From: nydragon Date: Mon, 10 Feb 2025 15:30:10 +0100 Subject: [PATCH] feat: add hass ip --- hosts/raptus/headscale/acls.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/raptus/headscale/acls.nix b/hosts/raptus/headscale/acls.nix index c03308f..3f10975 100644 --- a/hosts/raptus/headscale/acls.nix +++ b/hosts/raptus/headscale/acls.nix @@ -16,6 +16,7 @@ let }; shanMeta = self.nixosConfigurations.shan.config.modules.meta; + homeAIp = "100.64.0.9"; in { services.headscale.settings.policy.path = pkgs.writeTextFile { @@ -42,7 +43,7 @@ in [ "tag:guest" ] - [ "${shanMeta.tailscale.ip}:443" ] + [ "${shanMeta.tailscale.ip}:443" "${homeAIp}:80" ] ) ];