Compare commits

..

No commits in common. "bb3ffbbd90d9465eeba20b59a32509b9dddcfb03" and "88d96f198b60543c9fa00a55ee75973481497fb7" have entirely different histories.

View file

@ -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"];