schedule imapnotify to start after sops-nix

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-22 20:45:30 +01:00
parent a8f942072d
commit 2b1e9c7963
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -60,4 +60,8 @@
withExternalGnupg = true; withExternalGnupg = true;
}; };
}; };
systemd.user.services.imapnotify.Unit = {
Wants = [ "sops-nix.service" ];
After = [ "sops-nix.service" ];
};
} }