From 1b28f9ec8a36c0d1bad629e84b7b81896bc0a728 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Thu, 10 Jun 2021 11:54:16 +0200 Subject: [PATCH] fix: update transmission port & fix IPv6 portcheck --- home-pc.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home-pc.nix b/home-pc.nix index 743ca6a..12cf7c6 100644 --- a/home-pc.nix +++ b/home-pc.nix @@ -34,8 +34,12 @@ programs.zsh.enable = true; networking.firewall.allowedTCPPorts = [ - 4824 # transmission + 54950 # transmission ]; + networking.hosts = { + # force IPv4, see: https://github.com/transmission/transmission/issues/407 + "87.98.162.88" = [ "portcheck.transmissionbt.com" ]; + }; users.users.felschr = { isNormalUser = true;