about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-10-31 15:50:47 +0100
committerGitHub <noreply@github.com>2021-10-31 15:50:47 +0100
commitaaeba3c577b40fb12e2c1ee1044636093111b612 (patch)
treefe8c3ba69bf4031fd4167b0672acffbc06533329 /nixos
parent67e9f0551f9a5f53bc80d4abb2f9cbfcaacc3b81 (diff)
parent868157b9d6b53f385eba993320f97a182c9d6ed7 (diff)
downloadnixlib-aaeba3c577b40fb12e2c1ee1044636093111b612.tar
nixlib-aaeba3c577b40fb12e2c1ee1044636093111b612.tar.gz
nixlib-aaeba3c577b40fb12e2c1ee1044636093111b612.tar.bz2
nixlib-aaeba3c577b40fb12e2c1ee1044636093111b612.tar.lz
nixlib-aaeba3c577b40fb12e2c1ee1044636093111b612.tar.xz
nixlib-aaeba3c577b40fb12e2c1ee1044636093111b612.tar.zst
nixlib-aaeba3c577b40fb12e2c1ee1044636093111b612.zip
Merge pull request #143840 from maralorn/nextcloud-cron
nixos/nextcloud: Adapt cron frequency to changed upstream requirement
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/nextcloud.nix2
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 e6785d8d1835..04ec7888950d 100644
--- a/nixos/modules/services/web-apps/nextcloud.nix
+++ b/nixos/modules/services/web-apps/nextcloud.nix
@@ -586,7 +586,7 @@ in {
     { systemd.timers.nextcloud-cron = {
         wantedBy = [ "timers.target" ];
         timerConfig.OnBootSec = "5m";
-        timerConfig.OnUnitActiveSec = "15m";
+        timerConfig.OnUnitActiveSec = "5m";
         timerConfig.Unit = "nextcloud-cron.service";
       };