mirror of
https://github.com/Mic92/sops-nix.git
synced 2026-07-17 06:25:16 +08:00
Merge branch 'master' into go-mod-tidy
This commit is contained in:
commit
21a19f8ce8
2 changed files with 5 additions and 2 deletions
|
|
@ -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" ];
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,10 @@
|
||||||
sops = ./modules/sops;
|
sops = ./modules/sops;
|
||||||
default = self.nixosModules.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;
|
homeManagerModule = self.homeManagerModules.sops;
|
||||||
darwinModules = {
|
darwinModules = {
|
||||||
sops = ./modules/nix-darwin;
|
sops = ./modules/nix-darwin;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue