flake+++
This commit is contained in:
parent
3f1051fc09
commit
32673e15e2
15
flake.nix
15
flake.nix
|
@ -62,15 +62,18 @@
|
|||
};
|
||||
};
|
||||
config = lib.mkIf config.services.wanireminder.enable {
|
||||
systemd.services.wanireminder = {
|
||||
wantedBy = ["multi-user.target"];
|
||||
systemd.timers.wanireminder = {
|
||||
wantedBy = ["wanireminder.target"];
|
||||
after = ["network.target"];
|
||||
description = "Run wanireminders";
|
||||
serviceConfig = {
|
||||
WorkingDirectory = "${self.defaultPackage.${system}}";
|
||||
Type = "oneshot";
|
||||
timerConfig = {
|
||||
OnCalendar = "hourly";
|
||||
Persistent = true;
|
||||
};
|
||||
};
|
||||
systemd.services.wanireminder = {
|
||||
description = "Run wanireminders";
|
||||
serviceConfig = {
|
||||
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