From b8347f62ba00897306b9a8964b638455d5acaa39 Mon Sep 17 00:00:00 2001 From: Conrad Kramer Date: Tue, 31 Mar 2026 14:56:27 -0700 Subject: [PATCH] Fix Headscale bootstrap policy syntax --- nixos/modules/burrow-headscale-policy.hujson | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/modules/burrow-headscale-policy.hujson b/nixos/modules/burrow-headscale-policy.hujson index aed7e22..8f0bcd2 100644 --- a/nixos/modules/burrow-headscale-policy.hujson +++ b/nixos/modules/burrow-headscale-policy.hujson @@ -1,11 +1,11 @@ { // Bootstrap with a simple allow-all policy; Burrow-specific lane segmentation // can be layered on once the control plane is live. - acls: [ + "acls": [ { - action: "accept", - src: ["*"], - dst: ["*:*"], + "action": "accept", + "src": ["*"], + "dst": ["*:*"], }, ], }