summaryrefslogtreecommitdiff
path: root/os/kay
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2025-10-18 12:58:34 +0530
committersinanmohd <sinan@sinanmohd.com>2025-10-18 13:01:20 +0530
commit0337b7a3722b8c30d9afdc15f2d48d18f5fa2cd6 (patch)
tree256001e6c88fc6535cf5690503de8ac596791f4f /os/kay
parentcf09d18d537206bc8f7a0c24f9bbf036b5e057d9 (diff)
fix(os/kay/headscale): give headplane access to all cleints for fetching details
Diffstat (limited to 'os/kay')
-rw-r--r--os/kay/modules/network/headscale.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/os/kay/modules/network/headscale.nix b/os/kay/modules/network/headscale.nix
index b354f9b..2380c56 100644
--- a/os/kay/modules/network/headscale.nix
+++ b/os/kay/modules/network/headscale.nix
@@ -52,6 +52,12 @@ let
acls = [
{
action = "accept";
+ src = [ "headplane@" ];
+ dst = [ "*:*" ];
+ }
+
+ {
+ action = "accept";
src = [ "group:owner" ];
dst = [ "*:*" ];
}