1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 01:18:32 +02:00

vdirsyncer: Fix service by moving the options before the command (#4109)

This commit is contained in:
Damien Cassou 2023-06-18 16:23:02 +02:00 committed by GitHub
parent 28c823032c
commit 0480dabc99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";
};
};