From 3f43c46cd201484494bfe8e1afc8b6bc08d75879 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Thu, 2 Jul 2026 16:55:57 +0300 Subject: [PATCH] allow nginx storage access --- nix/nixos-module.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/nixos-module.nix b/nix/nixos-module.nix index 3deb1e1..e7c3995 100644 --- a/nix/nixos-module.nix +++ b/nix/nixos-module.nix @@ -207,6 +207,7 @@ in group = cfg.group; home = cfg.stateDir; }; + users.users.${config.services.nginx.user}.extraGroups = [ cfg.group ]; services.postgresql = { enable = true;