diff options
author | sefidel <contact@sefidel.net> | 2023-03-03 21:27:48 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-03-03 21:46:27 +0900 |
commit | c3aeed28fb336274a593e84f0f9d655f7a9ed7ea (patch) | |
tree | d35c00f2e07a6adab8f8ae052c53d67a7bdb20a2 | |
parent | 642d0a35be463db007b239ddcde86bdea827907f (diff) | |
download | nixrc-c3aeed28fb336274a593e84f0f9d655f7a9ed7ea.tar.gz nixrc-c3aeed28fb336274a593e84f0f9d655f7a9ed7ea.zip |
feat(home/communication): fix mbsync-oneshot
-rw-r--r-- | home/profiles/communication/default.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/home/profiles/communication/default.nix b/home/profiles/communication/default.nix index 82664b3..3750013 100644 --- a/home/profiles/communication/default.nix +++ b/home/profiles/communication/default.nix @@ -44,9 +44,6 @@ in create = "maildir"; remove = "none"; expunge = "both"; - - extraConfig.account.SSLType = "IMAPS"; - extraConfig.account.SSLVersions = "TLSv1.2"; }; msmtp.enable = true; @@ -266,9 +263,14 @@ in }; Service = { Type = "oneshot"; - ExecStart = "${mbsyncCmd} --all"; + ExecStart = "${mbsyncCmd} -Va"; RemainAfterExit = true; TimeoutStartSec = "5min"; + Environment = "PATH=${lib.makeBinPath [ + # passage dependencies + pkgs.util-linux + pkgs.coreutils + ]}"; }; Install.WantedBy = [ "default.target" ]; }; |