diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-10-18 12:58:34 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-10-18 13:01:20 +0530 |
commit | 0337b7a3722b8c30d9afdc15f2d48d18f5fa2cd6 (patch) | |
tree | 256001e6c88fc6535cf5690503de8ac596791f4f /os/kay/modules/network/headscale.nix | |
parent | cf09d18d537206bc8f7a0c24f9bbf036b5e057d9 (diff) |
fix(os/kay/headscale): give headplane access to all cleints for fetching details
Diffstat (limited to 'os/kay/modules/network/headscale.nix')
-rw-r--r-- | os/kay/modules/network/headscale.nix | 6 |
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 = [ "*:*" ]; } |