fix: forgejo and grafana will attempt to restart on a slightly longer interval
All checks were successful
ci / nix-fmt (push) Successful in 8m26s

This commit is contained in:
Ceferino Patino 2025-12-07 15:31:32 -06:00
commit 39cd9c1c5b
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
2 changed files with 12 additions and 0 deletions

View file

@ -73,6 +73,12 @@ in {
};
};
systemd.services.forgejo = {
serviceConfig = {
RestartSec = "1s";
};
};
${namespace}.services.storage.impermanence.folders = ["/var/lib/forgejo"];
};
}

View file

@ -60,5 +60,11 @@ in {
];
};
};
systemd.services.grafana = {
serviceConfig = {
RestartSec = lib.mkForce "1s";
};
};
};
}