Compare commits

..

No commits in common. "5b0b925fe37eecfb289a4c7b92245626f8b43416" and "891fa83f014efe3d18c39d9e9a76fc2f3ae000cb" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -231,8 +231,8 @@ in {
federation.ENABLED = true; federation.ENABLED = true;
"git.timeout" = { "git.timeout" = {
DEFAULT = 6000; DEFAULT = 6000;
MIGRATE = 60000; MIGRATE = 6000;
MIRROR = 60000; MIRROR = 6000;
GC = 120; GC = 120;
}; };
mailer = { mailer = {

View file

@ -106,7 +106,7 @@ in {
StateDirectory = "certspotter"; StateDirectory = "certspotter";
}; };
script = '' script = ''
export CERTSPOTTER_STATE_DIR="$STATE_DIRECTORY" export CERTSPOTTER_STATE_DIR="$STATE_DIR"
cd "$CERTSPOTTER_STATE_DIR" cd "$CERTSPOTTER_STATE_DIR"
${pkgs.certspotter}/bin/certspotter -sendmail ${cfg.sendmailPath} ${lib.escapeShellArgs cfg.extraFlags} ${pkgs.certspotter}/bin/certspotter -sendmail ${cfg.sendmailPath} ${lib.escapeShellArgs cfg.extraFlags}
''; '';