mirror of
https://github.com/nix-community/home-manager
synced 2024-12-19 00:09:48 +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 = {
|
Service = {
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
# TODO `vdirsyncer discover`
|
# TODO `vdirsyncer discover`
|
||||||
ExecStart = "${cfg.package}/bin/vdirsyncer sync ${
|
ExecStart = "${cfg.package}/bin/vdirsyncer ${
|
||||||
concatStringsSep " " vdirsyncerOptions
|
concatStringsSep " " vdirsyncerOptions
|
||||||
}";
|
} sync";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue