1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

todoist, gdrive: depend on network-online

This commit is contained in:
Kierán Meinhardt
2019-05-15 18:23:13 +02:00
parent 495fcf0775
commit 18bd25afe1
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ in
systemd.services.google-drive = {
description = "Google Drive synchronisation service";
wantedBy = [ "network-online.target" ];
after = [ "network-online.target" ];
script = ''
${pkgs.grive2}/bin/grive -p ${cfg.directory}
'';

View File

@@ -24,7 +24,7 @@ in {
systemd.user.services.todoist-sync = {
enable = cfg.enable;
wantedBy = [ "network-online.target" ];
after = [ "network-online.target" ];
startAt = "*:0/5";
script = ''${todoist}/bin/todoist sync'';
};