fix: forgejo and grafana will attempt to restart on a slightly longer interval
All checks were successful
ci / nix-fmt (push) Successful in 8m26s
All checks were successful
ci / nix-fmt (push) Successful in 8m26s
This commit is contained in:
parent
d1ae501082
commit
39cd9c1c5b
2 changed files with 12 additions and 0 deletions
|
|
@ -73,6 +73,12 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
systemd.services.forgejo = {
|
||||
serviceConfig = {
|
||||
RestartSec = "1s";
|
||||
};
|
||||
};
|
||||
|
||||
${namespace}.services.storage.impermanence.folders = ["/var/lib/forgejo"];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,5 +60,11 @@ in {
|
|||
];
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services.grafana = {
|
||||
serviceConfig = {
|
||||
RestartSec = lib.mkForce "1s";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue