From ff227ba81ab96adbd7eadb29e1418e433b75ff5d Mon Sep 17 00:00:00 2001 From: glenn Date: Tue, 15 Oct 2024 10:31:40 +0200 Subject: [PATCH] disable auto updates for nextcloud since most things are from nixpkgs anyways --- nextcloud.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nextcloud.nix b/nextcloud.nix index bb43796..beefaf3 100644 --- a/nextcloud.nix +++ b/nextcloud.nix @@ -84,7 +84,7 @@ in { maxUploadSize = "16G"; https = true; - autoUpdateApps.enable = true; + autoUpdateApps.enable = false; extraAppsEnable = true; # Let NixOS install and configure Redis caching automatically. configureRedis = true; @@ -118,7 +118,11 @@ in { adminpassFile = "/etc/nixos/.secrets/nextadminpw"; }; # Suggested by Nextcloud's health check. - phpOptions."opcache.interned_strings_buffer" = "16"; + phpOptions = { + "opcache.interned_strings_buffer" = "16"; + # updatechecker = "false"; + # has_internet_connection = "false"; + }; }; # Nightly database backups. # postgresqlBackup = {