about summary refs log tree commit diff
path: root/nixos/tests/nextcloud
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2024-01-26 11:59:56 +0100
committerJonas Heinrich <onny@project-insanity.org>2024-01-26 14:22:49 +0100
commite1c0d281b2856fcd37a3098ba0317ec30900d1f1 (patch)
tree5546a2d923043c3e758c56c3a165f072a4b80f1c /nixos/tests/nextcloud
parent05f11d5cf849d11eca3863409f3608f8068bb72d (diff)
downloadnixlib-e1c0d281b2856fcd37a3098ba0317ec30900d1f1.tar
nixlib-e1c0d281b2856fcd37a3098ba0317ec30900d1f1.tar.gz
nixlib-e1c0d281b2856fcd37a3098ba0317ec30900d1f1.tar.bz2
nixlib-e1c0d281b2856fcd37a3098ba0317ec30900d1f1.tar.lz
nixlib-e1c0d281b2856fcd37a3098ba0317ec30900d1f1.tar.xz
nixlib-e1c0d281b2856fcd37a3098ba0317ec30900d1f1.tar.zst
nixlib-e1c0d281b2856fcd37a3098ba0317ec30900d1f1.zip
nixos/nextcloud: Rename extraOptions to settings
Diffstat (limited to 'nixos/tests/nextcloud')
-rw-r--r--nixos/tests/nextcloud/with-declarative-redis-and-secrets.nix2
-rw-r--r--nixos/tests/nextcloud/with-postgresql-and-redis.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/nextcloud/with-declarative-redis-and-secrets.nix b/nixos/tests/nextcloud/with-declarative-redis-and-secrets.nix
index addc898bd760..b09ee1276a13 100644
--- a/nixos/tests/nextcloud/with-declarative-redis-and-secrets.nix
+++ b/nixos/tests/nextcloud/with-declarative-redis-and-secrets.nix
@@ -41,7 +41,7 @@ in {
         };
         secretFile = "/etc/nextcloud-secrets.json";
 
-        extraOptions = {
+        settings = {
           allow_local_remote_servers = true;
           redis = {
             dbindex = 0;
diff --git a/nixos/tests/nextcloud/with-postgresql-and-redis.nix b/nixos/tests/nextcloud/with-postgresql-and-redis.nix
index d95af8a89d07..3c090f0d3c3b 100644
--- a/nixos/tests/nextcloud/with-postgresql-and-redis.nix
+++ b/nixos/tests/nextcloud/with-postgresql-and-redis.nix
@@ -41,7 +41,7 @@ in {
         extraApps = {
           inherit (pkgs."nextcloud${lib.versions.major config.services.nextcloud.package.version}Packages".apps) notify_push;
         };
-        extraOptions.trusted_proxies = [ "::1" ];
+        settings.trusted_proxies = [ "::1" ];
       };
 
       services.redis.servers."nextcloud".enable = true;