make calendar timer configurable

This commit is contained in:
Aubrey 2025-01-27 10:49:52 -06:00
parent e5d0d479c6
commit 2eb3a86caf
No known key found for this signature in database

View file

@ -41,8 +41,13 @@
}: {
options.services.wanireminder = {
enable = lib.mkEnableOption "wanikani reminder bot";
calendarTimes = lib.mkOption {
type = lib.types.oneOf [(lib.type.listOf lib.types.str) lib.types.str];
default = "hourly";
description = "Systemd timer specification";
};
webhook = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
description = "The webhook to post the messages to";
};
users =
@ -51,13 +56,13 @@
}
// {
name = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
};
wktoken = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
};
discord = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
};
};
};
@ -66,7 +71,7 @@
wantedBy = [ "timers.target" ];
after = ["network.target"];
timerConfig = {
OnCalendar = "hourly";
OnCalendar = config.services.wanireminder.calendarTimes;
Persistent = true;
Unit = ["wanireminder.service"];
};