10 lines
200 B
Nix
10 lines
200 B
Nix
{ ... }: {
|
|
services.openssh = {
|
|
enable = true;
|
|
forwardX11 = true;
|
|
permitRootLogin = "no";
|
|
startWhenNeeded = true;
|
|
openFirewall = true;
|
|
passwordAuthentication = false;
|
|
};
|
|
}
|