From 1443218ae7957314fd21344184418648b73cf124 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Mon, 9 Dec 2024 10:36:10 +0000 Subject: [PATCH] fix(nextcloud.nix): add group "nginx" to nextcloud-admin and nextcloud-database secrets --- hosts/architect/nextcloud.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/architect/nextcloud.nix b/hosts/architect/nextcloud.nix index 61b209f..c5e27f7 100644 --- a/hosts/architect/nextcloud.nix +++ b/hosts/architect/nextcloud.nix @@ -12,10 +12,12 @@ in nextcloud-admin = { file = ../../secrets/nextcloud-admin.age; owner = "nextcloud"; + group ="nginx"; }; nextcloud-database = { file = ../../secrets/nextcloud-database.age; owner = "nextcloud"; + group = "nginx"; }; };