mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
18 lines
398 B
Nix
18 lines
398 B
Nix
{pkgs, ...}: {
|
|
systemd.services.udp2tcp = {
|
|
wantedBy = ["multi-user.target"];
|
|
after = ["network.target"];
|
|
|
|
restartIfChanged = true;
|
|
|
|
path = with pkgs; [dig.host];
|
|
|
|
script = ''
|
|
${pkgs.udp-over-tcp}/bin/tcp2udp\
|
|
--tcp-listen 127.0.0.1:6001 \
|
|
--tcp-listen "$(host redalder.org | sed -e 's/.* //'):6001" \
|
|
--udp-forward 127.0.0.1:6666
|
|
'';
|
|
};
|
|
}
|