diff --git a/systems/dalinar/configuration.nix b/systems/dalinar/configuration.nix index 0af4365..5318ef0 100644 --- a/systems/dalinar/configuration.nix +++ b/systems/dalinar/configuration.nix @@ -253,6 +253,26 @@ #''; }; + services.nextcloud = { + enable = false; + home = "/storage/nextcloud"; + https = true; + hostName = "nc.cochrun.xyz"; + caching = { + redis = true; + }; + notify_push.enable = true; + autoUpdateApps.enable = true; + phpOptions = { + upload_max_filesize=1G; + post_max_size=1G; + memory_limit=2G; + opcache.memory_consumption = 256; + opcache.jit = 1255; + opcache.jit_buffer_size = 128M; + } + }; + # CADDY services.caddy = { enable = true;