make calendar timer configurable
This commit is contained in:
parent
e5d0d479c6
commit
2eb3a86caf
15
flake.nix
15
flake.nix
|
@ -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"];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue