From 31b7a25e6e041d9f0b4cfad0aeb3c012489400f4 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Sun, 1 Mar 2026 19:31:36 +0000 Subject: [PATCH] neverest: add clients-pool-size, remove systemd sync service --- profiles/neverest.nix | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/profiles/neverest.nix b/profiles/neverest.nix index 6ecd73e..cdc83df 100644 --- a/profiles/neverest.nix +++ b/profiles/neverest.nix @@ -53,6 +53,7 @@ in { type = "password"; cmd = concatStringsSep " " account.passwordCommand; }; + clients-pool-size = 8; }; folder = { aliases = { @@ -67,28 +68,4 @@ in { }; }; }; - - systemd.user.services.neverest-sync = { - Unit = { - Description = "Neverest email sync"; - }; - Service = { - Type = "oneshot"; - ExecStart = "${pkgs.neverest}/bin/neverest sync"; - }; - }; - - systemd.user.timers.neverest-sync = { - Unit = { - Description = "Neverest email sync timer"; - }; - Timer = { - OnBootSec = "1min"; - OnUnitActiveSec = "5min"; - Persistent = true; - }; - Install = { - WantedBy = ["timers.target"]; - }; - }; }