This commit is contained in:
Aubrey 2025-01-26 13:28:27 -06:00
parent 3f1051fc09
commit 32673e15e2
No known key found for this signature in database

View file

@ -62,15 +62,18 @@
}; };
}; };
config = lib.mkIf config.services.wanireminder.enable { config = lib.mkIf config.services.wanireminder.enable {
systemd.services.wanireminder = { systemd.timers.wanireminder = {
wantedBy = ["multi-user.target"]; wantedBy = ["wanireminder.target"];
after = ["network.target"]; after = ["network.target"];
description = "Run wanireminders"; timerConfig = {
serviceConfig = {
WorkingDirectory = "${self.defaultPackage.${system}}";
Type = "oneshot";
OnCalendar = "hourly"; OnCalendar = "hourly";
Persistent = true; Persistent = true;
};
};
systemd.services.wanireminder = {
description = "Run wanireminders";
serviceConfig = {
Type = "oneshot";
ExecStart = let ExecStart = let
configJson = builtins.toFile "config.json" (builtins.toJSON config.services.wanireminder); configJson = builtins.toFile "config.json" (builtins.toJSON config.services.wanireminder);
in ''${self.defaultPackage.${system}}/bin/wanireminder ${configJson}''; in ''${self.defaultPackage.${system}}/bin/wanireminder ${configJson}'';