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 {
|
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}'';
|
||||||
|
|
Loading…
Reference in a new issue