dn42.nix/modules/rtr.nix
2024-04-11 20:35:06 +02:00

15 lines
350 B
Nix

{ pkgs, ... }:
{
systemd.services.dn42-stayrtr = {
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
ExecStart = "${pkgs.stayrtr}/bin/stayrtr -cache https://dn42.burble.com/roa/dn42_roa_46.json -checktime=false -bind :8082";
DynamicUser = true;
User = "dn42-stayrtr";
};
};
}