From 0480dabc99e1b669ebe909949180fa2786e733cd Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 18 Jun 2023 16:23:02 +0200 Subject: [PATCH] vdirsyncer: Fix service by moving the options before the command (#4109) --- modules/services/vdirsyncer.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/vdirsyncer.nix b/modules/services/vdirsyncer.nix index 2f622d0a3..75ad0bbae 100644 --- a/modules/services/vdirsyncer.nix +++ b/modules/services/vdirsyncer.nix @@ -67,9 +67,9 @@ in { Service = { Type = "oneshot"; # TODO `vdirsyncer discover` - ExecStart = "${cfg.package}/bin/vdirsyncer sync ${ + ExecStart = "${cfg.package}/bin/vdirsyncer ${ concatStringsSep " " vdirsyncerOptions - }"; + } sync"; }; };