about summary refs log tree commit diff
path: root/nixos/tests/nextcloud
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2022-11-08 22:52:27 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2022-11-10 12:17:43 +0100
commit61128cba67d881a5a741ea2a403bfb43be636fc8 (patch)
tree0eb62e4c65e9b520d9847aaffc023815f4b46bfa /nixos/tests/nextcloud
parent394d4de8770db0c32c4a01957496d08256cdcaf5 (diff)
nixos/nextcloud: minor docs cleanup for openssl change
* s/NextCloud/Nextcloud/g
* `enableBrokenCiphersForSSE` should be enabled by default for any NixOS
  installation from before 22.11 to make sure existing installations
  don't run into the issue. Not the other way round.
* Update release notes to reflect on that.
* Improve wording of the warning a bit: explain which option to change
  to get rid of it.
* Ensure that basic tests w/o `enableBrokenCiphersForSSE` run with
  OpenSSL 3.
Diffstat (limited to 'nixos/tests/nextcloud')
-rw-r--r--nixos/tests/nextcloud/basic.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/tests/nextcloud/basic.nix b/nixos/tests/nextcloud/basic.nix
index 5cf4d8ca7554e..66ed9a62b8ae4 100644
--- a/nixos/tests/nextcloud/basic.nix
+++ b/nixos/tests/nextcloud/basic.nix
@@ -37,6 +37,8 @@ in {
         "d /var/lib/nextcloud-data 0750 nextcloud nginx - -"
       ];
 
+      system.stateVersion = "22.11";
+
       services.nextcloud = {
         enable = true;
         datadir = "/var/lib/nextcloud-data";