{ pkgs, ... }: { project.name = "authentik"; services = { postgres.service = { image = ""; restart = ""; command = ""; volumes = []; healthcheck = {}; user = ""; env_file = ""; }; redis.service = { image = ""; restart = ""; command = ""; volumes = []; healthcheck = {}; user = ""; env_file = ""; }; server.service = { image = ""; restart = ""; command = ""; volumes = []; healthcheck = {}; user = ""; env_file = ""; }; worker.service = { image = ""; restart = ""; command = ""; volumes = []; healthcheck = {}; user = ""; env_file = ""; }; }; }