9 lines
139 B
Nix
9 lines
139 B
Nix
|
{ ... }: {
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
forwardX11 = true;
|
||
|
permitRootLogin = "no";
|
||
|
startWhenNeeded = true;
|
||
|
};
|
||
|
}
|