mirror of
https://github.com/nix-community/home-manager
synced 2024-11-18 17:19:45 +01:00
vdirsyncer: Fix service by moving the options before the command (#4109)
This commit is contained in:
parent
28c823032c
commit
0480dabc99
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue