Try and run sops first?

This commit is contained in:
Lillian-Violet 2023-11-23 13:11:03 +01:00
parent eefec8f907
commit 679ef2ac5e

View file

@ -112,9 +112,12 @@
]; ];
}; };
systemd.services."sops-nix.service" = {
before = ["nextcloud-setup" "mysql.service"];
};
systemd.services."nextcloud-setup" = { systemd.services."nextcloud-setup" = {
requires = ["mysql.service"]; requires = ["mysql.service"];
after = ["mysql.service"]; after = ["mysql.service"];
}; };
systemd.user.services."nextcloud-setup".Unit.After = ["sops-nix.service"];
} }