feat(abaduh): setup nextcloud instance

This commit is contained in:
Guz
2025-09-16 16:18:06 -03:00
parent 8c8170058e
commit 23fff39cf9
4 changed files with 85 additions and 0 deletions

View File

@@ -60,6 +60,20 @@ with lib; {
owner = config.services.keikos.web.user;
};
"nextcloud/adminpass" = mkIf config.services.nextcloud.enable {
owner = "nextcloud";
};
"nextcloud/s3/secret" = mkIf config.services.nextcloud.enable {
owner = "nextcloud";
};
"nextcloud/s3/sseC" = mkIf config.services.nextcloud.enable {
owner = "nextcloud";
};
"pgadmin/password" = mkIf config.services.pgadmin.enable {
owner = config.systemd.services.pgadmin.serviceConfig.User;
};
"medama/anubis/hexFile" = {
owner = config.services.anubis.instances."medama".user;
};