[NixOS] Enable X11 forwarding over ssh

This commit is contained in:
Ivan Malison 2023-09-10 17:13:13 -06:00
parent 5309dc48f5
commit 35ec61575d

View File

@ -20,10 +20,13 @@
enable = true;
settings = {
PasswordAuthentication = false;
X11Forwarding = true;
};
};
programs.ssh = {
forwardX11 = true;
setXAuthLocation = true;
knownHosts = {
github = {
hostNames = ["github.com"];