26 lines
455 B
Nix
26 lines
455 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
networking.firewall = {
|
|
allowedTCPPorts = [ 22 ];
|
|
allowedUDPPorts = [ 22 ];
|
|
};
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
StreamLocalBindUnlink yes
|
|
'';
|
|
listenAddresses = [
|
|
{
|
|
addr = "0.0.0.0";
|
|
port = 22;
|
|
}
|
|
];
|
|
permitRootLogin = "no";
|
|
passwordAuthentication = false;
|
|
};
|
|
|
|
# Enable mosh for connecting to phone
|
|
programs.mosh.enable = true;
|
|
}
|