infrastructure/machines/web-01/ssh.nix
2023-05-17 01:11:47 +02:00

8 lines
127 B
Nix

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