nixos/machines/lil-maid/modules/network/ssh.nix
2024-08-05 23:39:24 +03:00

9 lines
140 B
Nix

{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
Compression = "yes";
};
};
}