Enabled x11 forwarding

This commit is contained in:
Nickiel12 2023-04-02 22:41:29 -07:00
parent f466c878cb
commit 9c3a94acc2

View file

@ -7,7 +7,10 @@
services = { services = {
sshd.enable = true; sshd.enable = true;
openssh.settings.PermitRootLogin = "no"; openssh = {
settings.PermitRootLogin = "no";
forwardX11 = true;
};
}; };
systemd.services.sshd.wantedBy = [ "multi-user.target" ]; systemd.services.sshd.wantedBy = [ "multi-user.target" ];