diff options
| author | Aleksandar Topuzović <aleksandar.topuzovic@gmail.com> | 2022-05-28 19:14:12 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-05-28 19:15:29 +0000 |
| commit | 3d573b3f00ed903363d37f7d1ba45af1a8651a03 (patch) | |
| tree | 3719eda625e8d8ad339f01e48d9a9d9f1cacbb04 | |
| parent | avrdudess: 2.13 -> 2.14 (diff) | |
| download | nixpkgs-origin/backport-175165-to-release-22.05.tar.gz | |
nixos/nextcloud: Fix broken config fileorigin/backport-175165-to-release-22.05
(cherry picked from commit fd86efb8c29ca83cbacd579c6318754ad45de360)
| -rw-r--r-- | nixos/modules/services/web-apps/nextcloud.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index 1d5ec5594f79..25357331332d 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -733,7 +733,7 @@ in { 'trusted_domains' => ${writePhpArrary ([ cfg.hostName ] ++ c.extraTrustedDomains)}, 'trusted_proxies' => ${writePhpArrary (c.trustedProxies)}, ${optionalString (c.defaultPhoneRegion != null) "'default_phone_region' => '${c.defaultPhoneRegion}',"} - ${optionalString (nextcloudGreaterOrEqualThan "23") "'profile.enabled' => ${boolToString cfg.globalProfiles}"} + ${optionalString (nextcloudGreaterOrEqualThan "23") "'profile.enabled' => ${boolToString cfg.globalProfiles},"} ${objectstoreConfig} ]; ''; |
