Merge branch 'master' into go-mod-tidy

This commit is contained in:
mergify[bot] 2025-03-13 08:46:22 +00:00 committed by GitHub
commit 21a19f8ce8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

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

View file

@ -66,7 +66,10 @@
sops = ./modules/sops;
default = self.nixosModules.sops;
};
homeManagerModules.sops = ./modules/home-manager/sops.nix;
homeManagerModules = {
sops = ./modules/home-manager/sops.nix;
default = self.homeManagerModules.sops;
};
homeManagerModule = self.homeManagerModules.sops;
darwinModules = {
sops = ./modules/nix-darwin;