12 lines
197 B
Nix
12 lines
197 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
# Enable the OpenSSH daemon.
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
PermitRootLogin = "no";
|
||
|
PasswordAuthentication = true;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|