configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: change bluepill-proxy ssh port

so that it doesn't interfere with bluepill port

+2 -1
+2 -1
hosts/bluepill-proxy/modules/socat.nix
··· 1 1 {pkgs, ...}: { 2 2 networking.firewall = { 3 3 enable = true; 4 - allowedTCPPorts = [22 25565 23343]; 4 + allowedTCPPorts = [22 2222 25565 23343]; 5 5 allowedUDPPorts = [25565 23343 24454 22232]; 6 6 }; 7 7 ··· 91 91 wantedBy = ["multi-user.target"]; 92 92 }; 93 93 94 + services.openssh.port = 2222; 94 95 systemd.services.ssh-tcp-22 = { 95 96 description = "SSH TCP 22 forward"; 96 97 wants = ["network-online.target"];