diff --git a/nixos/ssh.nix b/nixos/ssh.nix index c73b8d9a..35e49641 100644 --- a/nixos/ssh.nix +++ b/nixos/ssh.nix @@ -20,6 +20,8 @@ services.openssh = { enable = true; settings = { + AllowAgentForwarding = true; + AllowTcpForwarding = true; PasswordAuthentication = false; X11Forwarding = true; };