From b9f87ac490203ea231ac310781bd55ab4d41e250 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 3 Jun 2024 04:08:10 +0000 Subject: [PATCH] [NixOS] Allow agent forwarding --- nixos/ssh.nix | 2 ++ 1 file changed, 2 insertions(+) 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; };