infrastructure/machines/web-01/ssh.nix
2023-05-22 15:09:04 +02:00

9 lines
122 B
Nix

_:
{
services.openssh = {
passwordAuthentication = false;
enable = true;
};
programs.mosh.enable = true;
}