blob: 6f9acb9051ddbbb8fe5dab423577cb35cc890949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ config, lib, pkgs, inputs, ... }:
{
services.nginx.virtualHosts."tracktrain.stuebinm.eu" = {
locations."/" = {
proxyPass = "http://localhost:4000";
proxyWebsockets = true;
};
enableACME = true;
forceSSL = true;
};
networking.firewall.allowedTCPPorts = [ 443 ];
systemd.services.tracktrain = {
enable = true;
description = "tracks trains, hopefully";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig.Type = "simple";
path = [ pkgs.wget ];
script = ''
cd /tmp
wget "https://ilztalbahn.eu/wp-content/uploads/2020/07/gtfs.zip"
${import inputs.tracktrain {nixpkgs = pkgs;}}/bin/haskell-gtfs
'';
startAt = "daily";
};
}
|