My Nix Configuration

[prefect.mailserver] Run cert copying script daily instead of monthly

While it copies more often, this should hopefully prevent me ever
needing to manually copy certs myself

pyrox.dev 3015ea24 30b902e7

verified
Changed files
+1 -1
systems
x86_64-linux
prefect
services
mailserver
+1 -1
systems/x86_64-linux/prefect/services/mailserver/default.nix
···
wantedBy = [ "timers.target" ];
timerConfig = {
OnBootSec = "5m";
-
OnCalendar = "monthly";
Unit = "copy-mail-certs.service";
};
};
···
wantedBy = [ "timers.target" ];
timerConfig = {
OnBootSec = "5m";
+
OnCalendar = "daily";
Unit = "copy-mail-certs.service";
};
};