layne: remove protonvpn

This commit is contained in:
Adithya 2024-11-11 21:18:09 +05:30
parent 1a695fb7bb
commit 05457d3712
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 1 additions and 26 deletions

View file

@ -32,10 +32,4 @@
"10.10.10.14/24" "10.10.10.14/24"
]; ];
}; };
networking.wg-quick = {
interfaces = {
ProtonVPN.configFile = config.sops.secrets."proton/layne".path;
};
};
} }

View file

@ -28,7 +28,7 @@ in
"--lpd" "--lpd"
]; ];
settings = { settings = {
peer-port = 36840; peer-port = 42069;
rpc-bind-address = "127.0.0.1"; rpc-bind-address = "127.0.0.1";
rpc-port = 9091; rpc-port = 9091;
rpc-host-whitelist = "transmission.labs.adtya.xyz"; rpc-host-whitelist = "transmission.labs.adtya.xyz";
@ -60,23 +60,4 @@ in
}; };
}; };
systemd.services.transmission.unitConfig.RequiresMountsFor = [ "/mnt/data" ]; 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";
};
};
} }