mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
16 lines
259 B
Nix
16 lines
259 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings.PasswordAuthentication = false;
|
|
banner = ''
|
|
|
|
Authorized access only!
|
|
|
|
If you are not authorized to access or use this system, disconnect now!
|
|
|
|
'';
|
|
};
|
|
programs.mosh.enable = true;
|
|
} |