Files
nix/hosts/common/configs/system/sshd/default.nix
Nikolaos Karaolidis 4129589665 Disable fail2ban
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-08-17 10:59:13 +03:00

16 lines
240 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
kitty.terminfo
tmux.terminfo
];
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PrintMotd = false;
};
};
}