blob: a1bbd10fbc88edb1502f5592629aa55be55a1ed2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ ... }:
{
programs.mosh.enable = true;
services.openssh = {
enable = true;
settings.PermitRootLogin = "no";
settings.PasswordAuthentication = false;
};
networking.firewall.allowedTCPPorts = [ 22 ];
}
|