diff options
Diffstat (limited to 'flora/services/urlwatcher.nix')
-rw-r--r-- | flora/services/urlwatcher.nix | 17 |
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"; - }; - -} |