infrastructure/machines/web-01/ssh.nix

10 lines
122 B
Nix
Raw Normal View History

2023-05-22 15:09:04 +02:00
_:
2023-05-17 01:10:18 +02:00
{
services.openssh = {
passwordAuthentication = false;
enable = true;
};
2023-05-17 01:11:47 +02:00
programs.mosh.enable = true;
2023-05-17 01:10:18 +02:00
}