aboutsummaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-08-05 01:44:13 +0900
committersefidel <contact@sefidel.net>2023-08-05 01:44:13 +0900
commit6d7289eab528a7acb7adcb1be98ab9c6e850dddf (patch)
tree701c1de46f964fc2fcdbf011e21c8645c9fa31ef /home
parent2b87bbb18ba73571306c9374dd527a99162da254 (diff)
downloadnixrc-6d7289eab528a7acb7adcb1be98ab9c6e850dddf.zip
fix(home/communications): fix After option being silently ignored
Diffstat (limited to 'home')
-rw-r--r--home/profiles/communication/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/home/profiles/communication/default.nix b/home/profiles/communication/default.nix
index 59fdc1f..b1fc67d 100644
--- a/home/profiles/communication/default.nix
+++ b/home/profiles/communication/default.nix
@@ -361,11 +361,11 @@ in
systemd.user.services.mbsync-oneshot = {
Unit = {
Description = "mbsync oneshot synchronisation";
+ After = [ "sops-nix.service" ];
};
Service = {
Type = "oneshot";
ExecStart = "${mbsyncCmd} -Va";
- After = [ "sops-nix.service" ];
RemainAfterExit = true;
TimeoutStartSec = "5min";
};