nixos/glitchtip: replace preStart with ExecStartPre

This commit is contained in:
h7x4
2025-10-27 18:52:21 +09:00
parent 67938a0b32
commit 7227679c51
@@ -236,11 +236,8 @@ in
glitchtip = commonService // {
description = "GlitchTip";
preStart = ''
${lib.getExe pkg} migrate
'';
serviceConfig = commonServiceConfig // {
ExecStartPre = "${lib.getExe pkg} migrate";
ExecStart = ''
${lib.getExe python.pkgs.gunicorn} \
--bind=${cfg.listenAddress}:${toString cfg.port} \