Compare commits

...

2 Commits

Author SHA1 Message Date
7e62a9ff70 fix 2025-09-23 16:15:21 +03:00
ff4e5a634c fix 2025-09-23 16:14:53 +03:00

View File

@@ -75,8 +75,6 @@ in
weight = 1; weight = 1;
}; };
}; };
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
@@ -153,12 +151,12 @@ in
services.mastodon-kanidm-sync = { services.mastodon-kanidm-sync = {
after = [ after = [
# "mastodon.service" # TODO: ?? # "mastodon.service" # TODO: ??
"postgres.service" "postgresql.service"
"kanidm.service" "kanidm.service"
]; ];
requires = [ requires = [
"kanidm.service" "kanidm.service"
"postgres.service" "postgresql.service"
]; ];
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
environment = let db = config.services.mastodon.database; environment = let db = config.services.mastodon.database;