flake++++
This commit is contained in:
parent
32673e15e2
commit
a076ed5399
|
@ -63,20 +63,20 @@
|
||||||
};
|
};
|
||||||
config = lib.mkIf config.services.wanireminder.enable {
|
config = lib.mkIf config.services.wanireminder.enable {
|
||||||
systemd.timers.wanireminder = {
|
systemd.timers.wanireminder = {
|
||||||
wantedBy = ["wanireminder.target"];
|
|
||||||
after = ["network.target"];
|
after = ["network.target"];
|
||||||
timerConfig = {
|
timerConfig = {
|
||||||
OnCalendar = "hourly";
|
OnCalendar = "hourly";
|
||||||
Persistent = true;
|
Persistent = true;
|
||||||
|
Unit = ["wanireminder.service"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
systemd.services.wanireminder = {
|
systemd.services.wanireminder = {
|
||||||
description = "Run wanireminders";
|
description = "Run wanireminders";
|
||||||
|
script = let
|
||||||
|
configJson = builtins.toFile "config.json" (builtins.toJSON config.services.wanireminder);
|
||||||
|
in ''${self.defaultPackage.${system}}/bin/wanireminder ${configJson}'';
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
ExecStart = let
|
|
||||||
configJson = builtins.toFile "config.json" (builtins.toJSON config.services.wanireminder);
|
|
||||||
in ''${self.defaultPackage.${system}}/bin/wanireminder ${configJson}'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue