summaryrefslogtreecommitdiff
path: root/os/kay
diff options
context:
space:
mode:
Diffstat (limited to 'os/kay')
-rw-r--r--os/kay/modules/network/headscale.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/os/kay/modules/network/headscale.nix b/os/kay/modules/network/headscale.nix
index 14fcee3..cee386c 100644
--- a/os/kay/modules/network/headscale.nix
+++ b/os/kay/modules/network/headscale.nix
@@ -54,6 +54,11 @@ let
acls = [
{
action = "accept";
+ src = [ "*" ];
+ dst = [ "tag:namescale:${toString config.services.namescale.settings.port}" ];
+ }
+ {
+ action = "accept";
src = [ "headplane@" ];
dst = [ "*:*" ];
}
@@ -69,11 +74,10 @@ let
src = [ "group:bud" ];
dst = [ "tag:bud_clients:*" ];
}
-
{
action = "accept";
- src = [ "*" ];
- dst = [ "tag:namescale:${toString config.services.namescale.settings.port}" ];
+ src = [ "tag:bud_clients" ];
+ dst = [ "tag:bud_clients:80,443" ];
}
];
};