Fix malformed service file

This commit is contained in:
Manuel Thalmann 2024-05-16 02:16:53 +02:00
parent 357d931f53
commit 1349352997

View file

@ -359,6 +359,7 @@ in {
${serviceName} = {
Unit = {
Description = "rclone sync service for ${name} at using ${providerName}";
After = builtins.concatLists (builtins.attrValues sync.systemdDependencies);
};
Service = {
@ -381,7 +382,6 @@ in {
Install = {
WantedBy = lib.optional sync.autoStart "${targetName}.target";
After = builtins.concatLists (builtins.attrValues sync.systemdDependencies);
};
};
})