nixos/common/remote-access.nix

9 lines
136 B
Nix
Raw Normal View History

2023-07-28 15:39:50 +03:00
{ ... }:
{
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
programs.mosh.enable = true;
}