From 5907293d93a4f69ec91b831c31529763952b9030 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sun, 22 Jun 2025 16:15:10 +0200 Subject: [PATCH] feat: nextcloud opts --- hosts/hitsugibune/nextcloud.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/hitsugibune/nextcloud.nix b/hosts/hitsugibune/nextcloud.nix index 9bc977c..44fd11a 100644 --- a/hosts/hitsugibune/nextcloud.nix +++ b/hosts/hitsugibune/nextcloud.nix @@ -10,6 +10,7 @@ enable = true; hostName = "10.0.0.69"; https = false; + configureRedis = true; package = pkgs.nextcloud31; settings = let prot = "http"; # or https @@ -25,8 +26,9 @@ config = { adminuser = "admin"; adminpassFile = "/etc/nextcloud-admin-pass"; - dbtype = "sqlite"; + dbtype = "mysql"; }; + database.createLocally = true; }; services.nginx = {