about summary refs log tree commit diff
path: root/nixos/tests/nextcloud
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2023-12-09 17:07:44 +0100
committerJonas Heinrich <onny@project-insanity.org>2023-12-29 01:04:46 +0100
commitdd8c96379f07e9e2fada88168c6c42920b3db7a1 (patch)
treecb6411ad2d8b071315923d9911629055b04e254b /nixos/tests/nextcloud
parent5ec415b260db7edeba1435b45ca815d1305025da (diff)
nixos/nextcloud: Move options into now freeForm extraOptions
Diffstat (limited to 'nixos/tests/nextcloud')
-rw-r--r--nixos/tests/nextcloud/with-postgresql-and-redis.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/nextcloud/with-postgresql-and-redis.nix b/nixos/tests/nextcloud/with-postgresql-and-redis.nix
index 586bf50fd939c..d95af8a89d07a 100644
--- a/nixos/tests/nextcloud/with-postgresql-and-redis.nix
+++ b/nixos/tests/nextcloud/with-postgresql-and-redis.nix
@@ -32,7 +32,6 @@ in {
           adminpassFile = toString (pkgs.writeText "admin-pass-file" ''
             ${adminpass}
           '');
-          trustedProxies = [ "::1" ];
         };
         notify_push = {
           enable = true;
@@ -42,6 +41,7 @@ in {
         extraApps = {
           inherit (pkgs."nextcloud${lib.versions.major config.services.nextcloud.package.version}Packages".apps) notify_push;
         };
+        extraOptions.trusted_proxies = [ "::1" ];
       };
 
       services.redis.servers."nextcloud".enable = true;