feat(sshd): enable X11 forwarding

This commit is contained in:
mandlm 2022-06-24 12:39:55 +02:00
parent 03af748698
commit a2e4d70167
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7

View File

@ -69,7 +69,10 @@
git
];
services.openssh.enable = true;
services.openssh = {
enable = true;
forwardX11 = true;
};
nix = {
package = pkgs.nixFlakes;