From a90c31568bab0d2f86281f57ded48ac3d87741bf Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Tue, 1 Jul 2025 01:39:07 +0200 Subject: [PATCH] fix: missplaced config line --- hosts/hitsugibune/nextcloud.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/hitsugibune/nextcloud.nix b/hosts/hitsugibune/nextcloud.nix index a7cab2c..84a4330 100644 --- a/hosts/hitsugibune/nextcloud.nix +++ b/hosts/hitsugibune/nextcloud.nix @@ -9,6 +9,7 @@ enable = true; hostName = "nextcloud.sprechtl.me"; https = true; + nginx.recommendedHttpHeaders = true; configureRedis = true; caching.redis = true; extraApps = { @@ -21,6 +22,8 @@ adminuser = "admin"; adminpassFile = config.age.secrets.nextcloud.path; dbtype = "pgsql"; + }; + settings = { maintenance_window_start = 3; }; database.createLocally = true;