From ea155d6d3a589e17b3cfa08d39ef9a569c4f8bea Mon Sep 17 00:00:00 2001 From: Ethan Reece Date: Sun, 23 Feb 2025 00:32:46 -0600 Subject: [PATCH] Allow ProxyJump --- targets/vpn/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/targets/vpn/configuration.nix b/targets/vpn/configuration.nix index 154ff35..fd394c1 100644 --- a/targets/vpn/configuration.nix +++ b/targets/vpn/configuration.nix @@ -48,7 +48,11 @@ in services = { openssh = { enable = true; - settings.PasswordAuthentication = false; + settings = { + PasswordAuthentication = false; + AllowTcpForwarding = "yes"; + AllowAgentForwarding = "yes"; + }; }; cloud-init.enable = lib.mkForce false;