Base, rupert: Enable X11 forwarding on SSH

This commit is contained in:
fruchti 2025-07-04 09:10:22 +02:00
parent 2fda9075b0
commit 8b424cff0a
2 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,7 @@
settings = { settings = {
PasswordAuthentication = false; PasswordAuthentication = false;
KbdInteractiveAuthentication = false; KbdInteractiveAuthentication = false;
X11Forwarding = true;
}; };
}; };

View file

@ -103,8 +103,9 @@ in
services.openssh = { services.openssh = {
enable = true; enable = true;
settings = { settings = {
# ForwardX11 = true;
PasswordAuthentication = false; PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
X11Forwarding = true;
}; };
}; };