nixos/common/remote-access.nix
Ivan Bushchik 86b8eed465
Add some comments, fix vetus and celerrime
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-08-23 09:38:48 +03:00

20 lines
316 B
Nix

{ ... }:
{
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
# Cute banner, right?
banner = ''
Authorized access only!
If you are not authorized to access or use this system, disconnect now!
'';
};
# TODO: I don't use it
programs.mosh.enable = true;
}