disable auto updates for nextcloud since most things are from nixpkgs anyways

This commit is contained in:
glenn 2024-10-15 10:31:40 +02:00
parent 18b5c12f9f
commit ff227ba81a

View file

@ -84,7 +84,7 @@ in {
maxUploadSize = "16G"; maxUploadSize = "16G";
https = true; https = true;
autoUpdateApps.enable = true; autoUpdateApps.enable = false;
extraAppsEnable = true; extraAppsEnable = true;
# Let NixOS install and configure Redis caching automatically. # Let NixOS install and configure Redis caching automatically.
configureRedis = true; configureRedis = true;
@ -118,7 +118,11 @@ in {
adminpassFile = "/etc/nixos/.secrets/nextadminpw"; adminpassFile = "/etc/nixos/.secrets/nextadminpw";
}; };
# Suggested by Nextcloud's health check. # 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. # Nightly database backups.
# postgresqlBackup = { # postgresqlBackup = {