This is my homelab server running NixOS with Proxmox.
Purpose
This server hosts my homelab infrastructure, running virtual machines and containers for various services.
{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};
services.fail2ban.enable = true;
security.sudo.wheelNeedsPassword = false;
}