nixos/bitwarden-directory-connector-cli: add wants network-online.target

This fixes the following warning:

trace: warning: bitwarden-directory-connector-cli.timer is ordered after 'network-online.target' but doesn't depend on it
This commit is contained in:
Sandro Jäckel 2024-04-28 18:18:18 +02:00
parent 2058a82fb0
commit e4de1c0b19
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -260,6 +260,7 @@ in {
description = "Sync timer for Bitwarden Directory Connector";
wantedBy = ["timers.target"];
after = ["network-online.target"];
wants = ["network-online.target"];
timerConfig = {
OnCalendar = cfg.interval;
Unit = "bitwarden-directory-connector-cli.service";