Fix After example

This commit is contained in:
Sandro 2025-02-26 21:58:31 +01:00 committed by GitHub
parent 07af005bb7
commit cfbf59d267
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -828,7 +828,7 @@ The actual sops configuration is in the `sops` namespace in your home.nix (or in
The secrets are decrypted in a systemd user service called `sops-nix`, so other services needing secrets must order after it: The secrets are decrypted in a systemd user service called `sops-nix`, so other services needing secrets must order after it:
```nix ```nix
{ {
systemd.user.services.mbsync.Unit.After = [ "sops-nix.service" ]; systemd.user.services.mbsync.unitConfig.After = [ "sops-nix.service" ];
} }
``` ```