From b6d0d92d074ba3cfc303ee0e223f7c403c38095a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Wed, 10 Jun 2026 16:51:23 +0200 Subject: [PATCH] fix anubis sock perms --- nixosConfigurations/hyperforge/nginx.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixosConfigurations/hyperforge/nginx.nix b/nixosConfigurations/hyperforge/nginx.nix index 812c20d..2d2e33f 100644 --- a/nixosConfigurations/hyperforge/nginx.nix +++ b/nixosConfigurations/hyperforge/nginx.nix @@ -10,6 +10,8 @@ in defaults.email = "acme@darkest.space"; }; + systemd.services.nginx.serviceConfig.SupplementaryGroups = [ "anubis" ]; + services = { nginx = { enable = true;