We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7fd1416 + 645fa1c commit 5745e46Copy full SHA for 5745e46
modules/sops/default.nix
@@ -448,7 +448,9 @@ in
448
# When using sysusers we no longer are started as an activation script because those are started in initrd while sysusers is started later.
449
systemd.services.sops-install-secrets = lib.mkIf (regularSecrets != { } && cfg.useSystemdActivation) {
450
wantedBy = [ "sysinit.target" ];
451
- after = [ "systemd-sysusers.service" ];
+ after = [ "systemd-sysusers.service" "userborn.service" ];
452
+ requiredBy = [ "sysinit-reactivation.target" ];
453
+ before = [ "sysinit-reactivation.target" ];
454
environment = cfg.environment;
455
unitConfig.DefaultDependencies = "no";
456
0 commit comments