mirror of
https://github.com/nix-community/home-manager
synced 2024-12-19 00:09:48 +01:00
vdirsyncer: synchronize metadata as well (#4167)
This commit is contained in:
parent
3be2abb2e6
commit
d895a77448
1 changed files with 5 additions and 3 deletions
|
@ -67,9 +67,11 @@ in {
|
||||||
Service = {
|
Service = {
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
# TODO `vdirsyncer discover`
|
# TODO `vdirsyncer discover`
|
||||||
ExecStart = "${cfg.package}/bin/vdirsyncer ${
|
ExecStart = let optStr = concatStringsSep " " vdirsyncerOptions;
|
||||||
concatStringsSep " " vdirsyncerOptions
|
in [
|
||||||
} sync";
|
"${cfg.package}/bin/vdirsyncer ${optStr} metasync"
|
||||||
|
"${cfg.package}/bin/vdirsyncer ${optStr} sync"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue