infrastructure/machines/web-01/ssh.nix

8 lines
96 B
Nix
Raw Normal View History

2023-05-17 01:10:18 +02:00
{ ... }:
{
services.openssh = {
passwordAuthentication = false;
enable = true;
};
}