[NixOS] Enable X11 forwarding over ssh
This commit is contained in:
parent
5309dc48f5
commit
35ec61575d
@ -20,10 +20,13 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
PasswordAuthentication = false;
|
PasswordAuthentication = false;
|
||||||
|
X11Forwarding = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
|
forwardX11 = true;
|
||||||
|
setXAuthLocation = true;
|
||||||
knownHosts = {
|
knownHosts = {
|
||||||
github = {
|
github = {
|
||||||
hostNames = ["github.com"];
|
hostNames = ["github.com"];
|
||||||
|
Loading…
Reference in New Issue
Block a user