layne: run transmission over VPN

This commit is contained in:
Adithya 2024-10-25 23:01:26 +05:30
parent d7b18d2136
commit 43b7e5f4ef
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C

View file

@ -28,7 +28,7 @@ in
"--lpd"
];
settings = {
peer-port = 51515;
peer-port = 35994;
rpc-bind-address = "127.0.0.1";
rpc-port = 9091;
rpc-host-whitelist = "transmission.labs.adtya.xyz";
@ -54,4 +54,23 @@ in
};
};
systemd.services.transmission.unitConfig.RequiresMountsFor = [ "/mnt/data" ];
systemd.timers.transmission-port-mapping = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "*:*:00/30";
Unit = "transmission-port-mapping.service";
};
};
systemd.services.transmission-port-mapping = {
script = ''
set -eu
${pkgs.libnatpmp}/bin/natpmpc -g 10.2.0.1 -a 1 0 tcp 60
${pkgs.libnatpmp}/bin/natpmpc -g 10.2.0.1 -a 1 0 udp 60
'';
serviceConfig = {
Type = "oneshot";
User = "root";
};
};
}