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 = {
|
options.services.wanireminder = {
|
||||||
enable = lib.mkEnableOption "wanikani reminder bot";
|
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 {
|
webhook = lib.mkOption {
|
||||||
type = lib.types.string;
|
type = lib.types.str;
|
||||||
description = "The webhook to post the messages to";
|
description = "The webhook to post the messages to";
|
||||||
};
|
};
|
||||||
users =
|
users =
|
||||||
|
@ -51,13 +56,13 @@
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
name = lib.mkOption {
|
name = lib.mkOption {
|
||||||
type = lib.types.string;
|
type = lib.types.str;
|
||||||
};
|
};
|
||||||
wktoken = lib.mkOption {
|
wktoken = lib.mkOption {
|
||||||
type = lib.types.string;
|
type = lib.types.str;
|
||||||
};
|
};
|
||||||
discord = lib.mkOption {
|
discord = lib.mkOption {
|
||||||
type = lib.types.string;
|
type = lib.types.str;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -66,7 +71,7 @@
|
||||||
wantedBy = [ "timers.target" ];
|
wantedBy = [ "timers.target" ];
|
||||||
after = ["network.target"];
|
after = ["network.target"];
|
||||||
timerConfig = {
|
timerConfig = {
|
||||||
OnCalendar = "hourly";
|
OnCalendar = config.services.wanireminder.calendarTimes;
|
||||||
Persistent = true;
|
Persistent = true;
|
||||||
Unit = ["wanireminder.service"];
|
Unit = ["wanireminder.service"];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue