mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
vdirsyncer: synchronize metadata as well (#4167)
This commit is contained in:
@@ -67,9 +67,11 @@ in {
|
||||
Service = {
|
||||
Type = "oneshot";
|
||||
# TODO `vdirsyncer discover`
|
||||
ExecStart = "${cfg.package}/bin/vdirsyncer ${
|
||||
concatStringsSep " " vdirsyncerOptions
|
||||
} sync";
|
||||
ExecStart = let optStr = concatStringsSep " " vdirsyncerOptions;
|
||||
in [
|
||||
"${cfg.package}/bin/vdirsyncer ${optStr} metasync"
|
||||
"${cfg.package}/bin/vdirsyncer ${optStr} sync"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user