Merge pull request #866 from gumball76/master
Some checks failed
Test / tests (push) Has been cancelled

README: fix Home Manager Systemd unit configuration
This commit is contained in:
Jörg Thalheim 2025-12-12 16:27:06 +01:00 committed by GitHub
commit 496a6f625f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -851,7 +851,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:
```nix
{
systemd.user.services.mbsync.unitConfig.After = [ "sops-nix.service" ];
systemd.user.services.mbsync.Unit.After = [ "sops-nix.service" ];
}
```