diff options
author | stuebinm | 2022-04-07 00:30:14 +0200 |
---|---|---|
committer | stuebinm | 2022-04-07 00:30:14 +0200 |
commit | 6ff038b4d29ec761336c807f4a79831c99f29d67 (patch) | |
tree | 919923aca3630c6d33461fabdf89eab96e85bff0 /flora/services/urlwatcher.nix | |
parent | f02d780a600745bf6f3e9887137492f9b26ee70b (diff) |
flora is a trainspotter now
(well, a trainschedulespotter to be precise)
Diffstat (limited to '')
-rw-r--r-- | flora/services/urlwatcher.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/flora/services/urlwatcher.nix b/flora/services/urlwatcher.nix new file mode 100644 index 0000000..56e043a --- /dev/null +++ b/flora/services/urlwatcher.nix @@ -0,0 +1,24 @@ +{ config, lib, pkgs, ... }: + +{ + systemd.services.urlwatcher-ilztal = { + enable = true; + description = "script watching the ilztalbahn gtfs for changes"; + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + serviceConfig.Type = "simple"; + path = [ pkgs.git ]; + script = '' + ${pkgs.gauche}/bin/gosh ${pkgs.copyPathToStore ./urlwatcher.scm} + ''; + }; + + systemd.timers.wikibot = { + wantedBy = [ "timers.target" ]; + timerConfig = { + Unit = "urlwatcher-ilztal.service"; + OnBootSec = "5h"; + OnActiveSec = "1d"; + }; + }; +} |