From 2abea07b87e5ba0f53b5a7a1b294a345b44fce1a Mon Sep 17 00:00:00 2001 From: fi Date: Sun, 2 Nov 2025 23:14:37 +0100 Subject: [PATCH] Add nginx user to anubis group on nekomesh --- config/hosts/metrics-nekomesh/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/hosts/metrics-nekomesh/configuration.nix b/config/hosts/metrics-nekomesh/configuration.nix index 8d5b18f..8e07d60 100644 --- a/config/hosts/metrics-nekomesh/configuration.nix +++ b/config/hosts/metrics-nekomesh/configuration.nix @@ -13,5 +13,9 @@ }; }; + users.users.nginx = { + extraGroups = [ "anubis" ]; + }; + system.stateVersion = "25.11"; }