···161161162162- `services.dnscrypt-proxy2` gains a `package` option to specify dnscrypt-proxy package to use.
163163164164+- `services.nextcloud.configureRedis` now defaults to `true` in accordance with upstream recommendations to have caching for file locking. See the [upstream doc](https://docs.nextcloud.com/server/31/admin_manual/configuration_files/files_locking_transactional.html) for further details.
165165+164166- `services.gitea` supports sending notifications with sendmail again. To do this, activate the parameter `services.gitea.mailerUseSendmail` and configure SMTP server.
165167166168- `libvirt` now supports using `nftables` backend.
+5-2
nixos/modules/services/web-apps/nextcloud.nix
···772772773773 configureRedis = lib.mkOption {
774774 type = lib.types.bool;
775775- default = config.services.nextcloud.notify_push.enable;
776776- defaultText = lib.literalExpression "config.services.nextcloud.notify_push.enable";
775775+ default = true;
777776 description = ''
778777 Whether to configure Nextcloud to use the recommended Redis settings for small instances.
778778+779779+ ::: {.note}
780780+ The Nextcloud system check recommends to configure either Redis or Memcache for file lock caching.
781781+ :::
779782780783 ::: {.note}
781784 The `notify_push` app requires Redis to be configured. If this option is turned off, this must be configured manually.