mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
22 lines
613 B
Nix
22 lines
613 B
Nix
|
{pkgs, ...}: let
|
||
|
notes-git = ''${pkgs.git}/bin/git -C /home/daylin/stuff/notes'';
|
||
|
in {
|
||
|
systemd.services.notes-bot = {
|
||
|
description = "auto commit changes to notes";
|
||
|
serviceConfig = {
|
||
|
Type = "oneshot";
|
||
|
User = "daylin";
|
||
|
ExecStart = ''${notes-git} commit -m ":memo: :robot: $(${pkgs.coreutils}/bin/date +'%T')" --no-gpg-sign -- notes'';
|
||
|
};
|
||
|
};
|
||
|
systemd.timers.notes-bot-timer = {
|
||
|
description = "run notes commit service";
|
||
|
wantedBy = ["timers.target"];
|
||
|
timerConfig = {
|
||
|
OnCalendar = "daily";
|
||
|
Persistent = true;
|
||
|
Unit = "notes-bot.service";
|
||
|
};
|
||
|
};
|
||
|
}
|