mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
18 lines
421 B
Nix
18 lines
421 B
Nix
{
|
|
systemd.services.imaginary-illuminations = {
|
|
enable = true;
|
|
wants = ["network-online.target"];
|
|
serviceConfig = {
|
|
user = "kfm";
|
|
WorkingDirectory = "/home/kfm/cloud/Seafile/Documents/Media/imaginary-illuminations";
|
|
};
|
|
startAt = "7:00";
|
|
script = ''
|
|
./post.ts
|
|
'';
|
|
serviceConfig.DynamicUser = true;
|
|
};
|
|
|
|
systemd.timers.moinbot.timerConfig.RandomizedDelaySec = "14h";
|
|
}
|