summaryrefslogtreecommitdiff
path: root/flora/services/urlwatcher.nix
diff options
context:
space:
mode:
authorstuebinm2022-04-07 21:44:23 +0200
committerstuebinm2022-04-07 22:19:37 +0200
commita22a0346524910c596f97aba955b7346b7479c2d (patch)
tree29385eeb7113ebdf64c990726e1f722b836d0258 /flora/services/urlwatcher.nix
parentb7a97a0076d7ce261f67573115e14bbcd0d6d679 (diff)
flora: fix the trainspotter script
Diffstat (limited to 'flora/services/urlwatcher.nix')
-rw-r--r--flora/services/urlwatcher.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/flora/services/urlwatcher.nix b/flora/services/urlwatcher.nix
deleted file mode 100644
index 5b6d7bf..0000000
--- a/flora/services/urlwatcher.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ 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 = with pkgs; [ curl libzip system-sendmail ];
- script = ''
- ${pkgs.gauche}/bin/gosh ${pkgs.copyPathToStore ./urlwatcher.scm}
- '';
- startAt = "daily";
- };
-
-}