Compare commits
No commits in common. "bb3ffbbd90d9465eeba20b59a32509b9dddcfb03" and "88d96f198b60543c9fa00a55ee75973481497fb7" have entirely different histories.
bb3ffbbd90
...
88d96f198b
1 changed files with 5 additions and 5 deletions
|
|
@ -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"];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue