infrastructure/machines/web-01/ssh.nix

9 lines
127 B
Nix
Raw Normal View History

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
}