diff --git a/configuration/services/nextcloud.nix b/configuration/services/nextcloud.nix index 7b87697..207679a 100644 --- a/configuration/services/nextcloud.nix +++ b/configuration/services/nextcloud.nix @@ -4,7 +4,7 @@ options, ... }: let - nextcloud = pkgs.nextcloud27; + nextcloud = pkgs.nextcloud26; hostName = "nextcloud.${config.services.nginx.domain}"; in { services.nextcloud = { @@ -16,8 +16,6 @@ in { maxUploadSize = "2G"; https = true; - configureRedis = true; - config = { overwriteProtocol = "https"; @@ -39,9 +37,11 @@ in { extraApps = { inherit (pkgs.local) bookmarks calendar contacts cookbook news notes; }; - }; - services.redis.vmOverCommit = true; + # TODO(tlater): Add redis config. This will be much easier + # starting with 22.11, since this will add an `extraOptions` where + # the necessary redis config can go. + }; # Ensure that this service doesn't start before postgres is ready systemd.services.nextcloud-setup.after = ["postgresql.service"];