mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
Enabled x11 forwarding
This commit is contained in:
parent
f466c878cb
commit
9c3a94acc2
1 changed files with 4 additions and 1 deletions
|
@ -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" ];
|
||||||
|
|
Loading…
Reference in a new issue