Compare commits

..

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

View file

@ -4,7 +4,7 @@
options, options,
... ...
}: let }: let
nextcloud = pkgs.nextcloud27; nextcloud = pkgs.nextcloud26;
hostName = "nextcloud.${config.services.nginx.domain}"; hostName = "nextcloud.${config.services.nginx.domain}";
in { in {
services.nextcloud = { services.nextcloud = {
@ -16,8 +16,6 @@ in {
maxUploadSize = "2G"; maxUploadSize = "2G";
https = true; https = true;
configureRedis = true;
config = { config = {
overwriteProtocol = "https"; overwriteProtocol = "https";
@ -39,9 +37,11 @@ in {
extraApps = { extraApps = {
inherit (pkgs.local) bookmarks calendar contacts cookbook news notes; 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 # Ensure that this service doesn't start before postgres is ready
systemd.services.nextcloud-setup.after = ["postgresql.service"]; systemd.services.nextcloud-setup.after = ["postgresql.service"];