[NixOS] Allow agent forwarding

This commit is contained in:
Ivan Malison 2024-06-03 04:08:10 +00:00
parent 3b55c26a2c
commit b9f87ac490

View File

@ -20,6 +20,8 @@
services.openssh = {
enable = true;
settings = {
AllowAgentForwarding = true;
AllowTcpForwarding = true;
PasswordAuthentication = false;
X11Forwarding = true;
};