nixos/common/remote-access.nix
Ivan Bushchik e5a3158d2e
uhhhhhhhhh
add secrets
refactor things
2023-07-28 15:39:50 +03:00

9 lines
136 B
Nix

{ ... }:
{
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
programs.mosh.enable = true;
}